Skip to content

Instantly share code, notes, and snippets.

@remkus
Created May 2, 2012 20:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save remkus/2580322 to your computer and use it in GitHub Desktop.
Save remkus/2580322 to your computer and use it in GitHub Desktop.
Filter one Post Format via a Custom Loop.
<?php
$args = array(
'post_type' => 'post',
'post_status' => 'publish',
'order' => 'DESC',
'tax_query' => array(
array(
'taxonomy' => 'post_format',
'field' => 'slug',
'terms' => array( 'post-format-aside' )
)
)
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment