![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/hessa.corals.io/wp-content/themes/halva/templates/ |
<?php /** * This is a template for displaying messages that posts were not found * * @package WordPress * @subpackage Halva * @since Halva 1.0 */ ?> <!-- no results (content none) --> <div class="bwp-no-results"> <div class="bwp-no-results-content"> <h3><?php esc_html_e( 'Nothing found', 'halva' ); ?></h3> <?php // homepage: a message for the site administrator with a suggestion to add a new post if ( is_home() && current_user_can( 'publish_posts' ) ) { ?> <p><?php printf( __( 'Ready to publish your first post? <a href="%1$s">Get started here</a>.', 'halva' ), esc_url( admin_url( 'post-new.php' ) ) ); ?></p> <?php } elseif ( is_search() ) { // search page: no search results ?> <p><?php esc_html_e( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'halva' ); ?></p> <?php } else { // otherwise, a message about the lack of posts on the site ?> <p><?php esc_html_e( 'It seems we can’t find what you’re looking for.', 'halva' ); ?></p> <?php } ?> </div> </div> <!-- end: no results (content none) -->