PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /home/ngamzghe/moltrazi.com/wp-content__e01594c/themes/genesis/ |
| Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64 IP: 159.198.77.92 |
| Dir : /home/ngamzghe/moltrazi.com/wp-content__e01594c/themes/genesis/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.
*
* @package Genesis\Templates
* @author StudioPress
* @license GPL-2.0-or-later
* @link https://my.studiopress.com/themes/genesis/
*/
// 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() {
genesis_markup(
[
'open' => '<article class="entry">',
'context' => 'entry-404',
]
);
genesis_markup(
[
'open' => '<h1 %s>',
'close' => '</h1>',
'content' => apply_filters( 'genesis_404_entry_title', __( 'Not found, error 404', 'genesis' ) ),
'context' => 'entry-title',
]
);
$genesis_404_content = sprintf(
/* translators: %s: URL for current website. */
__( 'The page you are looking for no longer exists. Perhaps you can return back to the <a href="%s">homepage</a> and see if you can find what you are looking for. Or, you can try finding it by using the search form below.', 'genesis' ),
esc_url( trailingslashit( home_url() ) )
);
$genesis_404_content = sprintf( '<p>%s</p>', $genesis_404_content );
/**
* The 404 content (wrapped in paragraph tags).
*
* @since 2.2.0
*
* @param string $genesis_404_content The content.
*/
$genesis_404_content = apply_filters( 'genesis_404_entry_content', $genesis_404_content );
genesis_markup(
[
'open' => '<div %s>',
'close' => '</div>',
'content' => $genesis_404_content . get_search_form( 0 ),
'context' => 'entry-content',
]
);
genesis_markup(
[
'close' => '</article>',
'context' => 'entry-404',
]
);
}
genesis();