zelwent
Member
Posted 4 months ago #
I have two pages(topics/posts) that have been tagged with the same tag name but when I go into my tags collection page(tag archive.php) and click on the "tag" with multiple pages(topics/posts), it only shows the most recent added page.
Why won't it show both links??
Thanks for any help!!
zelwent
Member
Posted 3 months ago #
Does anyone need more information to solve this? I still cannot figure this out after a month and my client is not that happy about it.
I'm using the Simple Tags Plug in to Tag Pages. Then when a user clicks on a tag, it takes them to a tag archive where the user can see what other Pages (seen as permalinks) have the same tag.
Problem is, is that it shows only one permalink at a time and I want to show them all.
see the code inside the Tag Archive.php:
<?php wp_tag_cloud('smallest=10&largest=16'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h2><a href="<?php the_permalink(); ?>" id="post-<?php the_ID(); ?>"><?php the_title(); ?></a></h2>
<?php previous_posts_link('VIEW MORE') ?>
<?php next_posts_link('VIEW MORE') ?>
<?php endwhile; ?>
<?php endif; ?>
Thank you to anyone who can help me as this is my first time using Wordpress and there is a lot to learn.