Skip to content

Instantly share code, notes, and snippets.

@blogjunkie
Created July 16, 2014 16:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save blogjunkie/2b91b095efe9a6212787 to your computer and use it in GitHub Desktop.
Save blogjunkie/2b91b095efe9a6212787 to your computer and use it in GitHub Desktop.
Get array of post IDs
<?php
$featured_posts = get_posts(
array(
'posts_per_page' => 5,
'tax_query' => array(
array(
'taxonomy' => 'post_tag',
'field' => 'slug',
'terms' => 'featured',
),
),
'fields' => 'ids'
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment