?AlkantarClanX12
| Current Path : /home/rankinh/villavanille/wp-content/themes/villa-vanille/inc/search/templates/parts/ |
| Current File : /home/rankinh/villavanille/wp-content/themes/villa-vanille/inc/search/templates/parts/loop.php |
<?php
if ( have_posts() ) {
while ( have_posts() ) :
the_post();
// Hook to include additional content before search item
do_action( 'drew_action_before_search_item' );
// Include post item
echo apply_filters( 'drew_filter_search_item_template', drew_get_template_part( 'search', 'templates/parts/post' ), get_the_ID() ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
// Hook to include additional content after search item
do_action( 'drew_action_after_search_item' );
endwhile; // End of the loop.
} else {
// Include global posts not found
drew_template_part( 'content', 'templates/parts/posts-not-found' );
}
wp_reset_postdata();