What theme are you using? Can you post a link to your site?
Theme based on Twenty Ten theme from WordPress. It’s a work site, so maybe not supposed to publish
I loaded up Twenty Ten on my local WP install. On the home page, at the bottom of each post, I see:
“Posted in foo | Tagged bar, baz | Comments Off | Edit”
and on the single post view, I see:
“This entry was posted in foo and tagged bar and baz. Bookmark the permalink. Edit.”
Do you see text like that?
here’s a post
http://peera.berkeley.edu/news/2015/10/testing-tags/
So I guess I am not seeing it.
Thanks for responding. It seems like adding tags shouldn’t be this difficult.
Your theme looks like it’s been heavily altered from the base Twenty Ten theme. Have you spoken to the person who designed your theme (according to your stylesheet, it was someone named Marcos M. Saramago)? As we don’t have access to your theme, the designer is probably the best person to ask.
Do you think that may be the issue? Or is there something I need to add to page.php (?. I read that I need to add a something along the lines of:
<?php wp_set_post_tags( $post_ID, $tags, $append ) ?>
thanks
You could use get_the_tag_list():
<?php echo get_the_tag_list( null, ', ', null ); ?>
Where you’d use that code depends on which file is being used to pull in the post content, though. In the base Twenty Ten theme it’s loop-single.php, but your theme’s designer might have changed that.
Sorry, inadvertent double post.