Replies: 0
Hi
What if I have 3 categories and I want to select only one sticky post from each category.
I have get_sticky_posts as filter in callback. But I just need one post from each category…
function get_sticky_posts($args){
$sticky = get_option( ‘sticky_posts’ );
return $sticky;
}