| Server IP : 121.121.20.254 / Your IP : 216.73.216.202 Web Server : Microsoft-IIS/10.0 System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64 User : IUSR ( 0) PHP Version : 8.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/KnowledgeBase/wp-content/themes/unblock/ |
Upload File : |
<?php
/**
* Search template
* The template for displaying search results.
* @package unBlock
* @since 1.0.0
*/
if (!defined('ABSPATH')) {
exit; // Exit if accessed directly.
}
get_header(); ?>
<div class="row column-wrapper">
<header id="page-header">
<h1 class="entry-title">
<?php
esc_html_e('Search', 'unblock');
?>
</h1>
<div id="page-intro">
<p><?php
/* translators: %s: search query. */
printf(esc_html__('These are the search results for the following keyword(s): %s', 'unblock'), '<span id="search-words">' . get_search_query() . '</span>');
?></p>
</div>
</header><!-- .page-header -->
<?php if (have_posts()) :
// Start the loop.
while (have_posts()) : the_post();
// Get the post content
get_template_part('template-parts/content/content', 'search');
// End the loop.
endwhile;
endif; ?>
</div>
<?php // Blog navigation
unblock_paging_nav(); ?>
<?php
get_footer();