49 lines
1.7 KiB
PHP
49 lines
1.7 KiB
PHP
<?php
|
|
/**
|
|
* The template for displaying Search Results pages
|
|
*/
|
|
|
|
get_header();
|
|
$column_classes = solarify_get_columns_classes(); ?>
|
|
<div id="content" class="<?php echo esc_attr( $column_classes['main_column_class'] ); ?>">
|
|
<?php if ( have_posts() ) :
|
|
// Start the Loop.
|
|
while ( have_posts() ) : the_post();
|
|
if ( 'page' === get_post_type() ) {
|
|
get_template_part( 'template-parts/content', 'page' );
|
|
} elseif ( 'fw-event' === get_post_type() ) {
|
|
get_template_part( 'template-parts/content', 'event' );
|
|
} elseif ( 'fw-services' === get_post_type() ) {
|
|
get_template_part( 'template-parts/content', 'service' );
|
|
} elseif ( 'fw-team' === get_post_type() ) {
|
|
get_template_part( 'template-parts/content', 'team' );
|
|
} elseif ( 'product' === get_post_type() ) {
|
|
get_template_part( 'template-parts/content', 'product' );
|
|
} else {
|
|
/*
|
|
* Include the post format-specific template for the content. If you want to
|
|
* use this in a child theme, then include a file called called content-___.php
|
|
* (where ___ is the post format) and that will be used instead.
|
|
*/
|
|
get_template_part( 'template-parts/content', get_post_format() );
|
|
}
|
|
|
|
endwhile;
|
|
// Previous/next post navigation.
|
|
solarify_paging_nav();
|
|
else :
|
|
// If no content, include the "No posts found" template.
|
|
get_template_part( 'template-parts/content', 'none' );
|
|
|
|
endif;
|
|
?>
|
|
</div><!--eof #content -->
|
|
<?php if ( $column_classes['sidebar_class'] ): ?>
|
|
<!-- main aside sidebar -->
|
|
<aside class="<?php echo esc_attr( $column_classes['sidebar_class'] ); ?>">
|
|
<?php get_sidebar(); ?>
|
|
</aside>
|
|
<!-- eof main aside sidebar -->
|
|
<?php
|
|
endif;
|
|
get_footer();
|