@laurymdragon – You’ll need to either edit your blog theme or have someone do it for you. When WordPress displays each of your posts, it loops through all of the information they contain and writes it to the screen based on your theme’s instructions. If your theme isn’t asking for the tags, they won’t display.
I’d recommend asking on http://jobs.wordpress.net for someone who’d be willing to add tags to your theme (or try looking for a theme that supports tags already).
I’ve done some editing to the theme’s code I already have, but I can’t find the bit of code to add for that specific… function I want to add to posts, nor where I should write it in the stylesheets =/ I’ll look on the other website though, thanks 🙂
add
<?php the_tags( '<p>Tags: ', ', ', '</p>'); ?>
where you want to show the tags (has to be in the ‘loop’) –
http://codex.wordpress.org/Template_Tags/the_tags
Yeah, I found that already. But where do I put it in the coding so it displays the applied tags on a post?
learn from the basics – look into single.php of the default theme for instance, and see how he did it 😉
…and if MY theme doesn’t have a single.php file? =/ I wouldn’t be able to apply it?
use your index.php – same thing
Perfect – it works 🙂 Not only that, but I also managed to find the code for something else I wanted. Thank you very much, and a happy new year 🙂