matthewjamesnewton
Member
Posted 6 months ago #
if I tag posts with a tag of XYZ and I visit http://www.example.com/tag/XYZ I see all the posts listed divided by an <hr>.
How can I change this results screen? I'd prefer that it show the results in a bullet list that contain the titles. You could then click the title and then be taken to the content.
Is there a plugin to help me do this or can I make a quick template change?
Thanks for your time,
Matt
Are you doing this for site performance reasons? If so limit the number of posts to show in:
Admin Dashboard>Settings>Reading>Blog pages show at most
and set to a low number.
Save Changes.
Note this will also limit what is seen on Home Page and Cat pages etc. for # of posts...
Use a good plugin to paginate this like WP-PageNavi.
I set it to 1!
matthewjamesnewton
Member
Posted 6 months ago #
No, I want a simple readable index that's very readable. I don't think that concatenating all the posts onto one page is very usable.
- Title for post 1
- Title for post 2
- Title for post 3
- Title for post 4
Not sure about a plugin, but this (example) would work:
<ul>
<li><a href="http://mystite.com/tag/tagname1">Title for post 1</a></li>
<li><a href="http://mystite.com/tag/tagname2">Title for post 2</a></li>
<li><a href="http://mystite.com/tag/tagname3">Title for post 3</a></li>
<li><a href="http://mystite.com/tag/tagname4">Title for post 4</a></li>
</ul>