Skip to main content

How to get distinct search results in WORDPRESS


How to get distinct search results in WORDPRESS
                             OR

(Solution)Wordpress Search Result displayed multiple times.

 

 

add the following function into your function.php of your theme
 

function search_distinct ()
{
    global $wp_query ;

    if (!empty($wp_query->query_vars['s'])) {
        return "DISTINCT" ;
        }

    return '' ;
}
add_filter ('posts_distinct', 'search_distinct') ;

 
 

 

Comments

  1. How to get distinct search results in WORDPRESS Is Very Helpful. Thanks for such Information
    Looking for WordPress Support Visit :
    WordPress Support
    WordPress Technical Support
    WordPress Support Phone Number

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete

Post a Comment