The groupby tag has no wiki summary.
1
vote
1answer
286 views
posts_groupby problem
On my search page I want to group the posts by post type. To do this I've got the following:
add_filter('posts_groupby', 'group_by_post_type' );
function group_by_post_type( $groupby ) {
global ...