Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #10082
    Fat_Nakago
    Member

    I would like to display BOTH tags AND Categories with each of my post.

    It seems like I can only do one or the other, but not both.

    Currently, my posts only show tags. I want to also display the categories it’s posted under as well.

    #10145
    Sakin
    Keymaster

    @Fat_Nakago: To display both tag and categories in Simple Catch theme. You need to build child them and copy the function simplecatch_loop() from simplecatch_functions.php and add it in your child theme functions.php and then edit the condition

    $tag = get_the_tags();
    if (! $tag ) { ?>
        <div class='tags'><?php _e( 'Categories: ', 'simplecatch' ); ?> <?php the_category(', '); ?> </div>
    <?php } else { 
             the_tags( '<div class="tags"> Tags: ', ', ', '</div>'); 
    }

    to

    <div class='tags'><?php _e( 'Categories: ', 'simplecatch' ); ?> <?php the_category(', '); ?> </div>
    <?php 
    $tag = get_the_tags();
    the_tags( '<div class="tags"> Tags: ', ', ', '</div>'); ?>
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How to show BOTH Tags AND Categories?’ is closed to new replies.