HEX
Server: Apache/2.4.41 (Ubuntu)
System: Linux vmi1674223.contaboserver.net 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC 2024 x86_64
User: root (0)
PHP: 7.4.3-4ubuntu2.22
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/Application/wp-content/themes/zoomy/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://codex.wordpress.org/Template_Hierarchy
 *
 * @package zoomy
 */

get_header();
$opt             = get_option( 'zoomy_opt' );
$error_title     = ! empty( $opt['error_heading'] ) ? $opt['error_heading'] : __( '404', 'zoomy' );
$error_sub_title = ! empty( $opt['error_subtitle'] ) ? $opt['error_subtitle'] : __( "The page you were looking for doesn't exist", "zoomy" );
?>
<section class="blog-area no-results not-found blog-sidebar mt-98">
    <div class="blog-bg pt-70 pb-120">
        <div class="container">

            <div class="row justify-content-center">
                <div class="col-lg-8">
                    <div class="section-title text-center mb-90">
                    <?php
                    if( $error_title ){ ?>
                        <h2 class="mb-10 content-align-center"> <?php echo esc_html( $error_title ); ?></h2>
                    <?php }
                    printf( wpautop( $error_sub_title ) );
                    ?>
                    </div>
                    <div class="page-content">
                        <div class="widget widget_search error_search_form">
                            <?php echo get_search_form() ?>
                        </div>
                    </div>
                </div>
            </div>

        </div>
    </div>
</section>
<?php get_footer();