Your IP : 3.16.215.60


Current Path : /var/www/html/wp-content/themes/church-event/
Upload File :
Current File : /var/www/html/wp-content/themes/church-event/search.php

<?php
/**
 * Search results template
 *
 * @package wpv
 * @subpackage church-event
 */
global $title;
$title = sprintf( __( 'Search Results for: %s', 'church-event' ), '<span>' . get_search_query() . '</span>' );
get_header(); ?>

<div class="row page-wrapper">
	<?php if ( have_posts() ): the_post(); ?>
		<?php VamtamTemplates::left_sidebar() ?>
		<article id="post-<?php the_ID(); ?>" <?php post_class(VamtamTemplates::get_layout()); ?>>
			<?php
			global $wpv_has_header_sidebars;
			if( $wpv_has_header_sidebars) {
				VamtamTemplates::header_sidebars();
			}
			?>
			<div class="page-content">
				<?php
				rewind_posts();
				get_template_part('loop', 'category');
				?>
			</div>
		</article>
		<?php VamtamTemplates::right_sidebar() ?>
	<?php else: ?>
	<article>
		<h1 style="text-align: center;margin-top: 35px;"><?php _e('Sorry, nothing found', 'church-event') ?></h1>
	</article>
	<?php endif ?>
</div>

<?php get_footer(); ?>