Wrap tags in unordered list

This commit is contained in:
Ben Goldsworthy 2021-01-24 12:59:32 +00:00
parent 7cea365fb2
commit 65f346796f
1 changed files with 7 additions and 3 deletions

View File

@ -188,11 +188,15 @@
?> ?>
<section id="post-tags"> <section id="post-tags">
<h2>Tags</h2> <h2>Tags</h2>
<ul>
<?php foreach ( $tags as $post_tag ) : ?> <?php foreach ( $tags as $post_tag ) : ?>
<a href="<?php echo esc_url( get_tag_link( $post_tag->term_id ) ); ?>" title="<?php echo esc_attr( $post_tag->name ); ?> Tag" class="tag-link"> <li>
<?php echo wp_kses_post( $post_tag->name ); ?> <a href="<?php echo esc_url( get_tag_link( $post_tag->term_id ) ); ?>" title="<?php echo esc_attr( $post_tag->name ); ?> Tag" class="tag-link">
</a> <?php echo wp_kses_post( $post_tag->name ); ?>
</a>
</li>
<?php endforeach; ?> <?php endforeach; ?>
</ul>
</section> </section>
<?php endif; ?> <?php endif; ?>