Situation
I have two cpt:
- Projects
- Works
In these two CPT I share the same taxonomy ‘Category’, and the same terms:
- Architecture
- Landscape
- Interior Design
I have URLs like
projects/architecture
works/architecture
so on...
Problem
Now the problem is that the two URL above are returning the same content, all the archives of the term architecture, whatever the cpt.
Is there a way that projects/architecture
would only return all the post under projects with for term architecture?
Note
I’m using Custom Post Type Permalinks to use permalink formatted like /cpt/term/post_title
Edit
Here is my category template (category.php)
<?php get_header(); ?>
<!-- info about the category -->
<?php
/* Queue the first post, that way we know
* what date we're dealing with (if that is the case).
*
* We reset this later so we can run the loop
* properly with a call to rewind_posts().
*/
if ( have_posts() )
the_post();
?>
<h1 class="page-title"><?php
_e( ucwords($post->post_type), 'boilerplate' );
?></h1>
<?php
/* Since we called the_post() above, we need to
* rewind the loop back to the beginning that way
* we can run the loop properly, in full.
*/
rewind_posts();
/* Run the loop for the archives page to output the posts.
* If you want to overload this in a child theme then include a file
* called loop-archives.php and that will be used instead.
*/
?>
<ul class="large-block-grid-4 small-block-grid-3 listWrap">
<?php
get_template_part( 'loop', 'category' );
?>
</ul>
<?php
?>
<?php get_footer(); ?>
Here is my category loop (loop-category.php)
<?php while ( have_posts() ) : the_post(); ?>
<?php
$attachments = get_posts( array(
'post_type' => 'attachment',
'post_parent' => $post->ID,
'orderby' => 'menu_order',
'order' => 'ASC',
'numberposts' => 1
) );
?>
<?php $img = wp_get_attachment_image_src($attachments[0]->ID, 'full');?>
<li class="listwp equalize">
<a href="https://wordpress.stackexchange.com/questions/91558/<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" class="th">
<img src="<?php echo $img[0]; ?>">
<?php $categories = get_the_terms($post->ID, 'category'); ?>
<div>
<span>
<?php foreach($categories as $category): ?>
<?php echo $category->name; ?>
<?php endforeach; ?>
</span>
</div>
</a>
<h2><?php the_title(); ?></h2>
</li>
<?php endwhile; ?>