Warning: set_time_limit() has been disabled for security reasons in /home/domains/vol3/223/3261223/user/htdocs/wp-content/plugins/contact-form-7/wp-contact-form-7.php on line 26 Server IP : 77.68.64.20 / Your IP : 216.73.216.231 Web Server : Apache System : Linux hp3-wp-1011484.hostingp3.local 3.10.0-1160.139.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Nov 3 13:30:41 UTC 2025 x86_64 User : csh2668037 ( 2112352) PHP Version : 7.4.33 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /home/domains/vol3/223/3261223/user/htdocs/wp-content/themes/workscout/ |
Upload File : |
<?php
/**
* The template for displaying search results pages.
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
*
* @package WorkScout
*/
$header_old = Kirki::get_option('workscout','pp_old_header');
$header_type = (Kirki::get_option('workscout','pp_old_header') == true) ? 'old' : '' ;
$header_type = apply_filters('workscout_header_type',$header_type);
get_header($header_type); ?>
<div id="titlebar" class="single">
<div class="container">
<div class="sixteen columns">
<h1 class="page-title"><?php printf( esc_html__( 'Search Results for: %s', 'workscout' ), '<em>' . get_search_query() . '</em>' ); ?></h1>
</div>
</div>
</div>
<?php $layout = Kirki::get_option( 'workscout', 'pp_blog_layout' ); ?>
<div class="container <?php echo esc_attr($layout); ?>">
<!-- Blog Posts -->
<div class="eleven columns">
<div class="padding-right">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/**
* Run the loop for the search to output the results.
* If you want to overload this in a child theme then include a file
* called content-search.php and that will be used instead.
*/
get_template_part( 'template-parts/content', 'search' );
?>
<?php endwhile; ?>
<?php if(function_exists('wp_pagenavi')) {
wp_pagenavi(array(
'next_text' => '<i class="fa fa-chevron-right"></i>',
'prev_text' => '<i class="fa fa-chevron-left"></i>',
'use_pagenavi_css' => false,
));
} else {
workscout_posts_navigation(array(
'prev_text' => ' ',
'next_text' => ' ',
));
} ?>
<?php else : ?>
<?php get_template_part( 'template-parts/content', 'none' ); ?>
<?php endif; ?>
</div>
</div>
<!-- Blog Posts / End -->
<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>