PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /home/trave494/weddinginfotips.kerihosting.com/wp-content/themes/genesis/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : /home/trave494/weddinginfotips.kerihosting.com/wp-content/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( array( 'open' => '<article class="entry">', 'context' => 'entry-404', ) ); genesis_markup( array( '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( array( 'open' => '<div %s>', 'close' => '</div>', 'content' => $genesis_404_content . get_search_form( 0 ), 'context' => 'entry-content', ) ); genesis_markup( array( 'close' => '</article>', 'context' => 'entry-404', ) ); } genesis();