| Server IP : 37.9.174.138 / Your IP : 216.73.216.117 Web Server : Apache System : Linux vps6.backend.sk 6.12.100+deb13-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.12.100-1 (2026-07-30) x86_64 User : ftpuser ( 1001) PHP Version : 8.4.24 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/lukasreistetter.sk/web/wp-content/themes/inbio/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 inbio
*/
?>
<section class="no-results not-found ptb--30">
<header class="page-header">
<h3 class="page-title"><?php esc_html_e('Nothing Found', 'inbio'); ?></h3>
</header><!-- .page-header -->
<div class="page-content">
<?php
if (is_home() && current_user_can('publish_posts')) :
esc_html_e('Ready to publish your first post? Please create a post.', 'inbio');
elseif (is_search()) : ?>
<p><?php esc_html_e('Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'inbio'); ?></p>
<?php
get_search_form();
else : ?>
<p><?php esc_html_e('It seems we can’t find what you’re looking for. Perhaps searching can help.', 'inbio'); ?></p>
<?php
get_search_form();
endif;
?>
</div><!-- .page-content -->
</section><!-- .no-results -->