-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
I want to extract posts from my network, ordering them by date but I want sticky posts to be shown first. I'm trying this:
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'network' => true,
'orderby' => 'date',
'order' => 'DESC',
'post__in' => get_option( 'sticky_posts' ),
'ignore_sticky_posts' => false
);
No luck...
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels