PK

ADDRLIN : /home/mannonia/www/wp-content/themes/mannoniavocat/
FLL :
Current File : /home/mannonia/www/wp-content/themes/mannoniavocat/search.php

<?php
/**
 * Search results page.
 *
 * @package The7
 * @since   1.0.0
 */

// File Security Check
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

$config = presscore_config();
$config->set( 'template', 'search' );
$config->set( 'layout', 'masonry' );
$config->set( 'template.layout.type', 'masonry' );

get_header();
?>

    <!-- Content -->
    <div id="content" class="content" role="main">

		<?php
		if ( have_posts() ) {
			the7_search_loop();
		} else {
			get_template_part( 'no-results', 'search' );
		}
		?>

    </div><!-- #content -->

<?php do_action( 'presscore_after_content' ) ?>

<?php get_footer() ?>


PK 99