X7ROOT File Manager
Current Path:
/home/gfecatvj/4abetter.us/wp-content/themes/hello-elementor
home
/
gfecatvj
/
4abetter.us
/
wp-content
/
themes
/
hello-elementor
/
📁
..
📁
assets
📄
comments.php
(1.45 KB)
📄
footer.php
(615 B)
📄
functions.php
(7.55 KB)
📄
header.php
(1.42 KB)
📁
includes
📄
index.php
(999 B)
📁
modules
📄
readme.txt
(16.04 KB)
📄
screenshot.png
(108.22 KB)
📄
sidebar.php
(270 B)
📄
style.css
(1.19 KB)
📁
template-parts
📄
theme.json
(533 B)
📄
theme.php
(4.01 KB)
📁
vendor
Editing: index.php
<?php /** * The site's entry point. * * Loads the relevant template part, * the loop is executed (when needed) by the relevant template part. * * @package HelloElementor */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } get_header(); $is_elementor_theme_exist = function_exists( 'elementor_theme_do_location' ); if ( is_singular() ) { if ( ! $is_elementor_theme_exist || ! elementor_theme_do_location( 'single' ) ) { get_template_part( 'template-parts/single' ); } } elseif ( is_archive() || is_home() ) { if ( ! $is_elementor_theme_exist || ! elementor_theme_do_location( 'archive' ) ) { get_template_part( 'template-parts/archive' ); } } elseif ( is_search() ) { if ( ! $is_elementor_theme_exist || ! elementor_theme_do_location( 'archive' ) ) { get_template_part( 'template-parts/search' ); } } else { if ( ! $is_elementor_theme_exist || ! elementor_theme_do_location( 'single' ) ) { get_template_part( 'template-parts/404' ); } } get_footer();
Upload File
Create Folder