Server IP : 66.29.132.124 / Your IP : 3.144.18.59 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/cynthiaadediran.com/wp-content/themes/gerold/ |
Upload File : |
<?php /** * The template for displaying 404 pages (not found) * * @link https://codex.wordpress.org/Creating_an_Error_404_Page * * @package Gerold_Theme * @since Gerold 1.0.0 * @author ThemeJunction */ get_header(); $geroldErrorTitle = get_theme_mod('gerold_error_title', __('404', 'gerold')); $geroldErrorSubtitle = get_theme_mod('gerold_error_subtitle', __('Page Not Found', 'gerold')); $geroldErrorDesc = get_theme_mod('gerold_error_desc', __('Sorry, the page you’re looking for does not exist or has been moved please go back to the Home page', 'gerold')); $geroldErrorLinkText = get_theme_mod('gerold_error_link_text', __('Go back home', 'gerold')); ?> <section class="tj-error__area error-404 not-found"> <div class="container-fluid gx-0"> <div class="row"> <div class="col"> <div class="tj-error__wrap text-center"> <div class="tj-error__content"> <?php if (!empty($geroldErrorTitle)) : ?> <h2 class="tj-error__title"><?php echo esc_html($geroldErrorTitle); ?></h2> <?php endif; ?> <div class="error_plug"></div> <?php if (!empty($geroldErrorSubtitle)) : ?> <h3 class="tj-error__subtitle"><?php echo esc_html($geroldErrorSubtitle); ?></h3> <?php endif; if (!empty($geroldErrorDesc)) : ?> <p class="tj-error__desc"><?php echo esc_html($geroldErrorDesc); ?></p> <?php endif; ?> <a href="<?php echo esc_url(home_url('/')); ?>" class="tj-error__btn btn tj-btn-primary"><?php echo esc_html($geroldErrorLinkText); ?></a> </div> </div> </div> </div> </div> </section><!-- .error-404 --> <?php get_footer();