I am using the code below to call post from a certain Taxonomy term. My intentions are to mix that into the normal loop.
I'm am not trying to create two different loops, but one loop that displays the post from the taxonomy term as well as the original post in the loop, all together.
The problem is that the code below made the original loop disappear, what should i do. I am not great at writing code, I am learning. Can someone please help me.
<?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(); ?>