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/ruwebsiteok/wp-content/themes/education-center/404.php
<?php
/**
 * The template for displaying 404 pages (not found)
 *
 * @link https://codex.wordpress.org/Creating_an_Error_404_Page
 * @todo MODIFY AS PER THEME
 * @package education_center
 */

$error_img = get_theme_mod( '404_image', get_template_directory_uri() . '/assets/img/404.png' );

get_header(); ?>

	<div class="content-area" id="primary">
		<div class="container">
			<main id="main" class="site-main">
				<section class="error-404 not-found">
					<figure class="m-0">
						<img src="<?php echo esc_url( $error_img ); ?>">
					</figure>
					<header class="page-header">
						<h1 class="page-title">
							<?php esc_html_e( 'Sorry We Can`t Find That Page!', 'education-center' ); ?>
						</h1>
						<div class="subtitle">
							<p><?php esc_html_e( 'The page you are looking for was moved, removed, renamed or never existed.', 'education-center' ); ?></p>
						</div>
						<div class="error404-search">
							<?php get_search_form(); ?>
						</div>
						<a href="<?php echo esc_url( home_url( '/' ) ); ?>" class="btn btn-lg btn-primary"><?php esc_html_e( 'Take Me Home', 'education-center' ); ?></a>
					</header><!-- .page-header -->
				</section><!-- .error-404 -->
			</main><!-- #main -->
			<?php
			/**
			 * @see education_center_latest_posts
			*/
			do_action( 'education_center_latest_posts' ); ?>
		</div>
	</div><!-- #primary -->
    
<?php get_footer();