fix(single.php): add space between tags

Fixes #18
This commit is contained in:
Kazhnuz Klappsthul 2021-01-03 10:25:50 +01:00
parent c449c49408
commit 85034163a7
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@
<?php $tags = get_the_tags();
if ($tags) {
foreach( $tags as $tag ) {
echo "<a href= '" . esc_url( get_tag_link( $tag->term_id ) ) . "' class='btn-small btn-primary'><i class='fa fa-tag'></i> " . $tag->name . "</a>";
echo "<a href= '" . esc_url( get_tag_link( $tag->term_id ) ) . "' class='btn-small btn-primary'><i class='fa fa-tag'></i> " . $tag->name . "</a> ";
}
} ?>