Wrap tags in unordered list
This commit is contained in:
parent
7cea365fb2
commit
65f346796f
1 changed files with 7 additions and 3 deletions
|
@ -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 ) : ?>
|
||||||
|
<li>
|
||||||
<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 href="<?php echo esc_url( get_tag_link( $post_tag->term_id ) ); ?>" title="<?php echo esc_attr( $post_tag->name ); ?> Tag" class="tag-link">
|
||||||
<?php echo wp_kses_post( $post_tag->name ); ?>
|
<?php echo wp_kses_post( $post_tag->name ); ?>
|
||||||
</a>
|
</a>
|
||||||
|
</li>
|
||||||
<?php endforeach; ?>
|
<?php endforeach; ?>
|
||||||
|
</ul>
|
||||||
</section>
|
</section>
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
|
|
Reference in a new issue