HEX
Server: Apache
System: Linux p3plzcpnl503801.prod.phx3.secureserver.net 4.18.0-553.62.1.lve.el8.x86_64 #1 SMP Mon Jul 21 17:50:35 UTC 2025 x86_64
User: aqo14e2iyyd9 (9667755)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/aqo14e2iyyd9/public_html/wp-content/themes/redlight/404.php
<?php
/**
 * The main template file
 *
 * This is the most generic template file in a WordPress theme
 * and one of the two required files for a theme (the other being style.css).
 * It is used to display a page when nothing more specific matches a query.
 * E.g., it puts together the home page when no home.php file exists.
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/
 *
 * @package redlight
 */
$redlight_error_404_text = get_theme_mod('redlight_error_404_text','404'); 
$redlight_error_title = get_theme_mod('redlight_error_title','Page not found '); 
$redlight_error_link_text = get_theme_mod('redlight_error_link_text','Back To Home '); 
$redlight_error_desc = get_theme_mod('redlight_error_desc','Oops! The page you are looking for does not exist. It might have been moved or deleted. '); 
get_header();
?>

    <div id="primary" class="content-area redlight-404-page redlight-page-containerr">
        <main id="main" class="site-main">
			<div class="blog-area-">
				<div class="container">
					<div class="row custom-gutter">
						<div class="col-lg-8 offset-lg-2">
							<div class="blog-inner">
								<section class="error-404 not-found">
									<header class="page-header">
										<h1 class="error-heading">
											<?php echo esc_html( $redlight_error_404_text ); ?>
										</h1>
										<h2 class="error-sub-title">
											<?php echo esc_html( $redlight_error_title ); ?>
										</h2>
										<p><?php echo esc_html( $redlight_error_desc ); ?></p>
									</header><!-- .page-header -->

									<div class="page-content error-page-inner">
										<a href="<?php echo esc_url(home_url('/')); ?>" class="go-back-btnn">
											<?php echo esc_html( $redlight_error_link_text ); ?>
										</a>
									</div>
								</section>
							</div>
						</div>
                    </div>
                </div>
            </div>
        </main><!-- #main -->
    </div><!-- #primary -->

<?php
get_footer();