Integrity Blog Tag Cloud

Hi,

I have created my own blog page, but the only thing missing is that I cant seem to replicate the blog tags at the bottom of page (integrity stack).

In the single blog page this is the code you use:

<?php x_get_view( 'integrity', 'content', get_post_format() ); ?>

That displays the content and tag list, but I don’t want the content to display, just the tags?

Found it…

<?php if ( has_tag() ) : ?>
   <footer class="entry-footer cf">
    <?php echo get_the_tag_list(); ?>
  </footer>
<?php endif; ?>

Glad you were able to figure it out :slight_smile:

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.