The groupby tag has no wiki summary.
1
vote
1answer
258 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 ...
1
vote
1answer
83 views
Arrange and separate posts
On a particular archive page I've created, I'm listing a number of posts by post name and they're listed in alphabetical order. Is there away to have them separated even further?
As in all posts ...
1
vote
1answer
224 views
Display category posts grouped by taxonomy
I'm working on a project where I use the default posts as "Products", default category as "Application" and a custom taxonomy called "Groups".
I want to list "Products" by "Application" ...
1
vote
2answers
164 views
Distinction on meta value on pre_get_posts
I've got a special "position" meta field for posts which can be between 0 and 37. 0 Is ignored, and everything else can have obviously any number between and including 1 and 37. But this of course ...
1
vote
0answers
130 views
Display “Join Group” Button outside Buddypress Group by ID
This is pretty much a very similar question to my previous one: Buddypress:bp_get_options_nav outside the Group?
I have the Group ID in my Post Meta, I also have the same slug.
Each post has a ...