Skip to content

Instantly share code, notes, and snippets.

@mgibbs189
Created October 23, 2019 13:44
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 mgibbs189/c4c91aee9108bc29fff7e34424c5e5f2 to your computer and use it in GitHub Desktop.
Save mgibbs189/c4c91aee9108bc29fff7e34424c5e5f2 to your computer and use it in GitHub Desktop.
FacetWP - recent posts for a specific post format
<?php
$args = [
'posts_per_page' => 10,
'tax_query' => [
[
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => 'post-format-link'
]
]
];
$recentPosts = new WP_Query( $args );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment