?AlkantarClanX12
| Current Path : /home/rankinh/lynkandco/wp-content/themes/lynkandco/modules/search/ |
| Current File : /home/rankinh/lynkandco/wp-content/themes/lynkandco/modules/search/helper.php |
<?php
add_action('wp_ajax_nexteuv_search_data_fetch' , 'nexteuv_search_data_fetch');
add_action('wp_ajax_nopriv_nexteuv_search_data_fetch','nexteuv_search_data_fetch');
function nexteuv_search_data_fetch(){
$search_val = nexteuv_sanitization($_POST['search_val']);
$the_query = new WP_Query( array( 'posts_per_page' => 5, 's' => $search_val, 'post_type' => array('post', 'product') ) );
if( $the_query->have_posts() ) :
while( $the_query->have_posts() ): $the_query->the_post(); ?>
<li class="quick_search_data_item">
<a href="<?php echo esc_url( get_permalink() ); ?>"><?php the_title();?></a>
</li>
<?php endwhile;
wp_reset_postdata();
else:
echo'<p>'. esc_html__( 'No Results Found', 'nexteuv') .'</p>';
endif;
die();
}
?>