Two different archive pages showing the same content
Finally I found a solution. Maybe it could help someone else. In my archive-filme.php I just used the basic loop: <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); get_template_part( ‘content’, get_post_format() ); endwhile; ?> <?php else : ?> <?php get_template_part( ‘content’, ‘none’ ); ?> <?php endif; ?> Now I … Read more