| Server IP : 62.72.47.131 / Your IP : 216.73.217.34 Web Server : Apache/2.4.66 (Debian) System : Linux 975cdb959a49 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64 User : ( 501) PHP Version : 8.3.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/html/wp-content/themes/medicate/ |
Upload File : |
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package WordPress
* @subpackage medicate
* @since 1.0
* @version 1.0
*/
get_header();
$pqf_options = get_option('pqf_options');
$title_text = 'Oops! This Page is Not Found.' ;
$desc_text = 'Please go back to home and try to find out once again.';
if(isset($pqf_options['title_404']) && !empty($pqf_options['title_404']))
{
$title_text = $pqf_options['title_404'];
}
if(isset($pqf_options['description_404']) && !empty($pqf_options['description_404']))
{
$desc_text = $pqf_options['description_404'];
}
?>
<div class="container">
<div id="primary" class="content-area">
<main id="main" class="site-main">
<div class="pt-not-found">
<div class="page-content">
<div class="row">
<div class="col-sm-12">
<div class="pt-error-block">
<div class="pt-errot-text"><?php esc_html_e( '404', 'medicate' ); ?></div>
<h2><?php echo esc_html($title_text); ?></h2>
<p><?php echo esc_html( $desc_text ); ?></p>
<div class="pt-btn-block">
<div class="pt-btn-container">
<a href="<?php echo esc_url(home_url()); ?>" class="pt-button">
<div class="pt-button-block">
<span class="pt-button-text"><?php esc_html_e('Back to Home', 'medicate'); ?></span>
<i class="ion ion-plus-round"></i>
</div>
</a>
</div>
</div>
</div>
</div>
</div>
</div><!-- .page-content -->
</div><!-- .error-404 -->
</main><!-- #main -->
</div><!-- #primary -->
</div><!-- .container -->
<?php get_footer();