| Server IP : 178.63.100.251 / Your IP : 216.73.216.228 Web Server : LiteSpeed System : Linux dobby.thevpsserver.com 4.18.0-553.16.1.lve.el8.x86_64 #1 SMP Tue Aug 13 17:45:03 UTC 2024 x86_64 User : truewayi ( 1855) PHP Version : 7.4.33 Disable Function : show_source,system,shell_exec,passthru,exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/truewayi/public_html/wp-content/themes/omexo/ |
Upload File : |
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package omexo
*/
$omexo_option = get_option('omexo_opt');
$error_title = omexo_array_get($omexo_option, 'error-title') ? $omexo_option['error-title'] : __('404', 'omexo');
$error_sub_title = omexo_array_get($omexo_option, 'error-sub-title') ? $omexo_option['error-sub-title'] : __('Page Not Found', 'omexo');
$error_desc = omexo_array_get($omexo_option, 'error-desc') ? $omexo_option['error-desc'] : __( 'It looks like nothing was found at this location. Try another search.', 'omexo' );
get_header();
?>
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="container">
<div class="row">
<div class="col-lg-12">
<div class="error-404 not-found text-center">
<header class="page-header">
<h1 class="page-title title-404"><?php echo esc_html($error_title);?></h1>
<h4><?php echo esc_html($error_sub_title);?></h4>
</header><!-- .page-header -->
<div class="page-content">
<p><?php echo esc_html($error_desc);?></p>
<div class="not-found-search">
<?php get_search_form();?>
</div>
</div><!-- .page-content -->
</div><!-- .error-404 -->
</div>
</div>
</div>
</main><!-- #main -->
</div><!-- #primary -->
<?php
get_footer();