| Server IP : 172.67.71.254 / Your IP : 216.73.216.4 Web Server : nginx/1.27.1 System : Linux in-5 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64 User : arabianexpress ( 1872) PHP Version : 8.0.30 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /storage/v9321/leapdubai/public_html/wp-content/themes/printx/ |
Upload File : |
<?php
/**
* The template for displaying 404 pages (not found)
*
* @link https://codex.wordpress.org/Creating_an_Error_404_Page
*
* @package printx
*/
get_header();
?>
<!-- tp-error-area end -->
<section class="tp-error__area pt-85 pb-120">
<div class="container">
<div class="row">
<div class="col-xl-12">
<?php
$printx_error_title = get_theme_mod('printx_error_title', __('Page not found', 'printx'));
$printx_error_link_text = get_theme_mod('printx_error_link_text', __('Back To Home', 'printx'));
$printx_error_desc = get_theme_mod('printx_error_desc', __("The page requested couldn't be found. This could be a spelling error in the URL or a removed page", 'printx'));
$printx_error_image = get_theme_mod('printx_error_image', get_template_directory_uri() . '/assets/img/error/thumb-1-1.png');
?>
<div class="tp-error__item text-center">
<?php if(!empty($printx_error_image)) : ?>
<div class="tp-error__thumb">
<img src="<?php echo esc_url($printx_error_image); ?>" alt="404_ERROR">
</div>
<?php endif; ?>
<div class="tp-error__content mb-40">
<?php if(!empty($printx_error_title)) : ?>
<h6 class="tp-error__title"><?php echo printx_kses($printx_error_title); ?></h6>
<?php endif; ?>
<?php if(!empty($printx_error_desc)) : ?>
<span><?php echo printx_kses($printx_error_desc); ?></span>
<?php endif; ?>
</div>
<a href="<?php print esc_url(home_url('/'));?>" class="tp-btn-purple-sm"><?php print esc_html($printx_error_link_text);?></a>
</div>
</div>
</div>
</div>
</section>
<!-- tp-error area start -->
<?php
get_footer();