Skip to content

Instantly share code, notes, and snippets.

@UVLabs
Created February 27, 2016 19:48
Show Gist options
  • Save UVLabs/32e59f7cd529fa564d3f to your computer and use it in GitHub Desktop.
Save UVLabs/32e59f7cd529fa564d3f to your computer and use it in GitHub Desktop.
<?php
$myposts = get_posts(array(
'showposts' => -1,
'post_type' => 'gallery',
'tax_query' => array(
array(
'taxonomy' => 'gallery_cat',
'field' => 'slug',
'terms' => array('sunsets', 'nature'))
))
);
foreach ($myposts as $mypost) {
echo $mypost->post_title . '<br/>';
echo $mypost->post_content . '<br/>';
echo $mypost->ID . '<br/><br/>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment