when i add a post, i dont see the tags and the comments under the blog post
i only see the tags in the sidebar
can someone help please??
when i add a post, i dont see the tags and the comments under the blog post
i only see the tags in the sidebar
can someone help please??
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
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?
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.
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.
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://wordpress.org/search/the_tags?forums=1
http://newwpthemes.com/wordpress-themes/wordpress-theme/page/4/
i am using the just news theme
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 />'); ?>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?
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 />'); ?>now i got it
also, how can i get rid of the tag widget in the sidebar
Please start another topic with that question.
ok
thanks for your help
MichaelH, i'm impressed by how effectively you and jvazjr worked to resolve his/her issue.
can you do me a huge favor and help me out with my question? it's been posted forever and i haven't gotten any answers.
essentially, whenever i go form MAMP build to live build, if i simply import my local mySQL db into my live one (after dropping the tables on the live one), all my links are broken. for example, they'll always be "http://localhost:8888/site" -- which of course won't work when i go live.
here's a link to that question: http://wordpress.org/support/topic/166925?replies=4#post-1012970
thank you!
My blog its Foto Cewek is also have a same problem. Event i adding codes
<?php the_content('Read the rest of this entry »'); ?>
<?php the_tags(' ', ', ', '
'); ?>
its still no work, actualy my standar wordpress template its not adding such as the code. i try to put the solving code is still none tags, Please help, because i dont wanna changes my template.
Thanks
so...where did you add the code?
in index.php you should already have this:
<?php the_content('Read the rest of this entry ยป'); ?>
or something similar like:
<?php the_excerpt(); ?>
So under that line of code (or possible somewhere else depending where you want your tags to show up) you add:
<?php the_tags(); ?>
This topic has been closed to new replies.