![]() Server : LiteSpeed System : Linux premium84.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : claqxcrl ( 523) PHP Version : 8.1.32 Disable Function : NONE Directory : /home/claqxcrl/claquemagazineawards.com/wp-content/themes/exs/template-parts/ |
<?php /** * Template part for displaying a message that posts cannot be found * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package WordPress * @subpackage ExS * @since 0.0.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } $heading = exs_option( 'search_none_heading', '' ) ? exs_option( 'search_none_heading', '' ) : esc_html__( 'Nothing Found', 'exs' ); $text = exs_option( 'search_none_text', '' ) ? exs_option( 'search_none_text', '' ) : esc_html__( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'exs' ); $content_none = exs_option( 'search_none_content', '' ) ? exs_option( 'search_none_content', '' ) : esc_html__( 'It seems we can’t find what you’re looking for. Perhaps searching can help.', 'exs' ); ?> <h4 class="page-title"><?php echo esc_html( $heading ); ?></h4> <?php if ( is_home() && current_user_can( 'publish_posts' ) ) : printf( '<p>' . wp_kses( /* translators: 1: link to WP admin new post page. */ __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'exs' ), array( 'a' => array( 'href' => array(), ), ) ) . '</p>', esc_url( admin_url( 'post-new.php' ) ) ); elseif ( is_search() ) : ?> <p><?php echo esc_html( $text ); ?></p> <?php else : ?> <p><?php echo esc_html( $content_none ); ?></p> <?php get_search_form(); endif;