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

    (@nology)

    I’m still new with some of this but I found this in the index.

    <div class="post-bottom">
    	<!--<?php if (function_exists('the_tags')) { ?><strong>Tags: </strong><?php the_tags('', ', ', ''); ?><br /><?php } ?>-->
    	<div class="cat"><span><?php the_category(', ') ?></span></div>
    
    	<div class="clearfix"></div>
    	</div>
    MichaelH

    (@michaelh)

    This code is non-excecuting because of these comment tags <!-- and -->

    <!--<?php if (function_exists('the_tags')) { ?><strong>Tags: </strong><?php the_tags('', ', ', ''); ?><br /><?php } ?>-->

    Change it to this to display tags:

    <?php if (function_exists('the_tags')) { ?><strong>Tags: </strong><?php the_tags('', ', ', ''); ?><br /><?php } ?>

    Thread Starter nology

    (@nology)

    Thanks that worked perfect.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Tags not showing up in posts?’ is closed to new replies.