at path:
ROOT
/
wp-content
/
themes
/
sirisha
/
404.php
run:
R
W
Run
assets
DIR
2026-06-11 02:04:52
R
W
Run
inc
DIR
2026-05-19 09:47:48
R
W
Run
languages
DIR
2026-05-19 09:47:48
R
W
Run
template-parts
DIR
2026-05-19 09:47:48
R
W
Run
templates
DIR
2026-05-19 09:47:48
R
W
Run
woocommerce
DIR
2026-05-19 09:47:48
R
W
Run
.DS_Store
6 KB
2023-03-05 11:34:20
R
W
Run
Delete
Rename
.htaccess
127 By
2026-05-27 01:21:48
R
W
Run
404.php
1.53 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
archive.php
2.9 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
author.php
2.61 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
comments.php
6.22 KB
2022-08-21 10:34:08
R
W
Run
Delete
Rename
footer.php
1.38 KB
2022-09-26 12:12:24
R
W
Run
Delete
Rename
functions.php
11.65 KB
2022-12-19 10:05:10
R
W
Run
Delete
Rename
header.php
890 By
2022-08-24 05:33:26
R
W
Run
Delete
Rename
index.php
2.7 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
page.php
936 By
2022-08-21 10:38:16
R
W
Run
Delete
Rename
screenshot.png
264.86 KB
2022-08-17 21:06:22
R
W
Run
Delete
Rename
search.php
2.32 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
searchform.php
848 By
2022-08-21 10:39:48
R
W
Run
Delete
Rename
sidebar.php
442 By
2022-08-21 10:40:06
R
W
Run
Delete
Rename
single-elementor_library.php
531 By
2022-08-21 10:40:38
R
W
Run
Delete
Rename
single-rainbow_projects.php
1.99 KB
2022-09-12 13:57:40
R
W
Run
Delete
Rename
single.php
1.72 KB
2022-08-24 05:33:26
R
W
Run
Delete
Rename
style-editor.css
41.02 KB
2022-08-17 21:06:22
R
W
Run
Delete
Rename
style-rtl.css
29.53 KB
2023-01-02 17:24:42
R
W
Run
Delete
Rename
style.css
12.48 KB
2023-09-21 04:01:16
R
W
Run
Delete
Rename
error_log
up
📄
404.php
Save
<?php /** * The template for displaying 404 pages (not found) * * @link https://codex.wordpress.org/Creating_an_Error_404_Page * * @package inbio */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly. } get_header(); $rainbow_options = Rainbow_Helper::rainbow_get_options(); ?> <div class="rbt-elements-area rn-section-gap"> <div class="error-area"> <div class="container"> <div class="row justify-content-center text-center"> <div class="col-10"> <?php if (!empty($rainbow_options['rainbow_404_title'])) { ?> <h1 class="title"><?php echo esc_html($rainbow_options['rainbow_404_title']); ?></h1> <?php } ?> <?php if (!empty($rainbow_options['rainbow_404_subtitle'])) { ?> <h3 class="sub-title"><?php echo esc_html($rainbow_options['rainbow_404_subtitle']); ?></h3> <?php } ?> <?php if (!empty($rainbow_options['rainbow_404_content'])) { ?> <p><?php echo esc_html($rainbow_options['rainbow_404_content']); ?></p> <?php } ?> <?php if ($rainbow_options['rainbow_enable_go_back_btn'] !== "no") { ?> <a class="rn-btn" href="<?php echo esc_url(home_url('/')); ?>"><span><?php echo esc_html($rainbow_options['rainbow_button_text']); ?></span></a> <?php } ?> </div> </div> </div> </div> </div><!-- End Error Area --> <?php get_footer();