| Server IP : 104.21.25.182 / Your IP : 216.73.216.226 Web Server : Apache System : Linux server.rehabsharif.com 5.14.0-611.54.3.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:31:24 EDT 2026 x86_64 User : nobi37te ( 1003) PHP Version : 8.2.33 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/nobi37te/public_html/wp-content/themes/buddyboss-theme/template-parts/ |
Upload File : |
<?php
/**
* Template part for displaying a message that posts cannot be found
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package BuddyBoss_Theme
*/
?>
<section class="no-results not-found text-center">
<header class="page-header">
<h1 class="page-title"><?php esc_html_e( 'No results found!', 'buddyboss-theme' ); ?></h1>
<?php if ( is_search() ) { ?>
<p class="desc"><?php esc_html_e( 'Sorry, but nothing matched your search terms.', 'buddyboss-theme' ); ?></p>
<?php } else { ?>
<p class="desc"><?php esc_html_e( 'It seems we can’t find what you’re looking for.', 'buddyboss-theme' ); ?></p>
<?php } ?>
</header><!-- .page-header -->
<div class="page-content">
<?php if ( is_home() && current_user_can( 'publish_posts' ) ) : ?>
<p><?php
printf(
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>.', 'buddyboss-theme' ), array(
'a' => array(
'href' => array(),
),
)
), esc_url( admin_url( 'post-new.php' ) )
);
?></p>
<?php elseif ( is_search() ) : ?>
<?php echo '<img class="no-results-img" src="'. get_template_directory_uri().'/assets/images/svg/no-results.svg" alt="' . __( 'No Results', 'buddyboss-theme' ) . '" />'; ?>
<?php
get_search_form();
else :
?>
<?php echo '<img class="no-results-img" src="'. get_template_directory_uri().'/assets/images/svg/no-results.svg" alt="' . __( 'No Results', 'buddyboss-theme' ) . '" />'; ?>
<?php
get_search_form();
endif;
?>
</div>
</section>