Skip to content

Instantly share code, notes, and snippets.

@kalenjohnson
Created August 23, 2014 00:14
Show Gist options
  • Save kalenjohnson/3ea4ca428cf504f62261 to your computer and use it in GitHub Desktop.
Save kalenjohnson/3ea4ca428cf504f62261 to your computer and use it in GitHub Desktop.
WP_Query specific taxonomy and sticky post
$competitor->featured = new WP_Query([
'post_type' => 'train',
'train-categories' => 'workouts',
'posts_per_page' => 2,
'post__in' => get_option( 'sticky_posts' ),
]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment