at path:
ROOT
/
wp-content
/
themes
/
custom-file-5-1769013186
/
index.php
run:
R
W
Run
assets
DIR
2026-01-21 16:33:09
R
W
Run
includes
DIR
2026-01-21 16:33:09
R
W
Run
template-parts
DIR
2026-01-21 16:33:09
R
W
Run
archlve.php
25 By
2026-01-23 04:04:35
R
W
Run
Delete
Rename
classic-editor.css
756 By
2026-01-21 16:33:09
R
W
Run
Delete
Rename
classic-editor.min.css
389 By
2026-01-21 16:33:09
R
W
Run
Delete
Rename
comments.php
1.6 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
editor.css
613 By
2026-01-21 16:33:09
R
W
Run
Delete
Rename
editor.min.css
517 By
2026-01-21 16:33:09
R
W
Run
Delete
Rename
footer.php
558 By
2026-01-21 16:33:09
R
W
Run
Delete
Rename
functions.php
6.04 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
header.php
1.37 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
index.php
1000 By
2026-01-21 16:33:09
R
W
Run
Delete
Rename
post_1769013187.php
41 By
2026-01-23 04:04:34
R
W
Run
Delete
Rename
readme.txt
11.98 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
screenshot.png
108.22 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
sidebar.php
271 By
2026-01-21 16:33:09
R
W
Run
Delete
Rename
style.css
12.25 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
style.min.css
5.62 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
theme.css
15.03 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
theme.min.css
12.15 KB
2026-01-21 16:33:09
R
W
Run
Delete
Rename
error_log
up
📄
index.php
Save
<?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();