Exclude pages from post grid?
-
hi! I found a function on a past topic for exclude posts in a “Post Grid” loop. Don’t work when I try to exclude pages.
function filter_post_query( $query_args, $attributes) { // Unique class name added from Advanced tab for Post Grid. if ( 'my-post-grid-class' == $attributes['aventurasGrid'] ) { // 123 and 456 is the post id you want to exclude. $query_args['post__not_in'] = array( 313,297,41,315,32,311,299,3,317 ); } return $query_args; } add_filter( 'uagb_post_query_args_grid', 'filter_post_query', 10, 2 );
This code still working?
Thanks a lot.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Exclude pages from post grid?’ is closed to new replies.