Created
February 27, 2016 19:48
-
-
Save UVLabs/32e59f7cd529fa564d3f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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