Might want to look at how the WordPress Default theme’s wp-content/themes/default/index.php makes use of Template Tag, the_tags() and comments_popup_link() to display those two items.
Related:
Stepping Into Template Tags
Stepping Into Templates
Template Hierarchy
Thread Starter
jvazjr
(@jvazjr)
i dont know where to find the tag section in the template
Did you find the_tags example in the WordPress Default theme’s index.php?
Thread Starter
jvazjr
(@jvazjr)
i did but i dont know where to change the post tags on my template
You would need to provide a link to download the theme you are using.
Thread Starter
jvazjr
(@jvazjr)
here is my blog
theinternetmarketer.jvazjrsblog.com
i want the tags to show up below the post
Please paste all the code from the theme template file (probably index.php) that is displaying those posts into a pastebin, such as wordpress.pastebin.ca, and report the link back here. Maybe someone might spot your problem. Thanks.
Thread Starter
jvazjr
(@jvazjr)
all i want to know is where can i find the code to change so that the tags show up below my posts??
Please provide one of these two things:
a link to download the theme you are using
or
paste the contents of your theme’s index.php in a pastebin and report the link back here.
Thanks.
Or review some of these threads:
http://ww.wp.xz.cn/search/the_tags?forums=1
Thread Starter
jvazjr
(@jvazjr)
Without test this, in your theme’s index.php
change this:
<?php the_content('Read the rest of this entry »'); ?>
to this:
<?php the_content('Read the rest of this entry »'); ?>
<?php the_tags(' ', ', ', '<br />'); ?>
Thread Starter
jvazjr
(@jvazjr)
it worked but i dont see the word tags before the tags
Did you get a chance to look at any of the links provided above, in particular the_tags() link?
Thread Starter
jvazjr
(@jvazjr)
i did look at them but when i tried some of the techniques, they did not work
So this example from that article didn’t work?
<?php the_tags('Tags:', ', ', '<br />'); ?>