• Resolved jessicasinha

    (@jessicasinha)


    Hello, could anyone assist with this request? I need to change settings somehow to display the tags listed for each post under the post. How do we do that? In case the theme is important, our active theme is Edge Child.

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • First, check out the customizer.
    >Appearance > Customize

    There may be an option to edit your blog posts and include tags.

    If not, you’ll have to edit the single.php file Check to see if that file has something like this:

    						<?php if( is_single() and has_tag() and $iw_opt['single-taglist']) : ?>
    						<div class="tagslist">
    							<?php the_tags('<p><i class="fa fa-tags fa-fw"></i> <span>Tagged:</span> ', ', ', '</p>') ?>
    						</div>

    If not, you’ll have to add it in except your class will be different – that “taglist” class is from my own css.

    Thread Starter jessicasinha

    (@jessicasinha)

    Where can I find this single.php file? Would editing the theme crash the website?

    Could I add this code just in the page that is being used as a blog?

    • This reply was modified 7 years, 4 months ago by jessicasinha.

    If the theme doesn’t have the option to add tags in the customizer, then you have to actually edit the theme files.

    >Appearance > editor

    On the drop down on the top right of this page is where you will see all your theme files. You should find a single-post.php or single.php file to edit that displays all of your single blog posts. It’s the format. Editing this file won’t crash the theme if you do it correctly, but if you don’t know code, I don’t suggest it. Instead, email the theme builder and she/he will give you the snippet of code to add and where.

    Thread Starter jessicasinha

    (@jessicasinha)

    Okay, thank you ??

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Display tags at bottom of post, theme: Edge Child’ is closed to new replies.