How do i Re-Insert the loop through query?
-
I am using this code to call post from a certain taxonomy term in the loop. But it excluded all the other post in the loop and it only shows the post from the taxonomy terms.
What do i add to the code for it show the regular post and the post from the taxonomy terms.
<?php // Create empty array to store post ids in $excludes = array(); $args=array( 'post_type' => array ('gallery','videos'), 'taxonomy'=>'series', 'term' => 'pretty-little-liars', 'post_status' => 'publish', ); query_posts( $args ); if (have_posts()) : while(have_posts()) : the_post(); ?>
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How do i Re-Insert the loop through query?’ is closed to new replies.