Just a little tweak
-
In order to avoid duplicate rows, i just use the “distinct” at query:
add_filter(‘posts_distinct’, ‘search_distinct’);
function search_distinct() {
global $pagenow, $wpdb;
// Filter only when performing a search on edit page on all page / post / custom post type
if ( is_admin() && $pagenow==’edit.php’ && $_GET[‘s’] != ”) {
$distinct = “DISTINCT”;
}return $distinct;
}
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Just a little tweak’ is closed to new replies.