I'm trying to go through all the PHP files that display posts to make certain things are consistent every time a post or several posts show up on those pages.
Example: I want to Tags to appear under every post, whether that post is accessed through the index page, the permalink, the search, the archives, the calendar, the tag links, etc.
So I found this bit of code:
<?php the_tags('Tags: ', ', ', '
'); ?>
..and then tried to figure out where I was supposed to PUT it. After looking through the files, I found that the home page = index.php, permalink page = single.php, search page = search.php, and whatnot. I put the code in and it worked for those pages.
Which PHP files account for pages accessed through the calendar, the tags, the categories, and whatever else I may be missing? I can't figure those out.
I hope that was clear enough; if not, I can try to expound upon it.