• I have found a few resolved topics with my needs, but the code is always a little different and I am failing at solving this.
    I want to remove the tags list that appears under each post.
    I do have a post page to edit (single.php).

    Here’s the code that I would think needs modification:

    <div class="entry">
                  <?php the_content(__('Continue Reading »')); ?>
                  <?php wp_link_pages(); ?>
                  <p class="post-tags">
                    <?php if (function_exists('the_tags')) the_tags('Tags: ', ', ', ''); ?>
    
          			</div>

    Any ideas would be greatly appreciated,
    Luke

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter lukeword

    (@lukeword)

    So I had to remove this code from both the single.php and the index.php:

    ‘<p class=”post-tags”>
    <?php if (function_exists(‘the_tags’)) the_tags(‘Tags: ‘, ‘, ‘, ”); ?>
    </p>’

    And now my tags are not showing under the post (one the homepage or the permalink page.

    Thanks,
    Luke

    Using Paalam theme by Sadish

    I looked for this code in those templates and it’s not there in 2.7.1

    Anybody have an update on what to remove to lose the tags at the bottom of posts?

    Munsford, that depends on the theme you are using. Could be in home.php or index or single.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Remove “tags” list under Posts’ is closed to new replies.