• I am trying to get tags to display at the bottom of my posts. When I create a new post, I can use the tag cloud to add tags, but tags do not appear on the post. Questions:

    1) do I need a particular plugin. I would like one compatible with 4.3.1 (eventually upgrading)

    2) if no plugin is required, what do I need to do to get them to display?

    3) do I have to modify a php file?

    Thanks!

Viewing 8 replies - 1 through 8 (of 8 total)
  • What theme are you using? Can you post a link to your site?

    Thread Starter marscat

    (@marscat)

    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?

    Thread Starter marscat

    (@marscat)

    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.

    Thread Starter marscat

    (@marscat)

    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.

Viewing 8 replies - 1 through 8 (of 8 total)

The topic ‘Tags are not displaying’ is closed to new replies.