tags on article page

This commit is contained in:
Ross Trottier 2024-08-20 11:11:17 -06:00
parent 05b49120d0
commit b9eec084c5
2 changed files with 15 additions and 2 deletions

View File

@ -21,6 +21,15 @@
</div> </div>
</a> </a>
<?php the_content(); ?> <?php the_content(); ?>
<h4>Tags:</h4>
<?php
$tags = get_the_tags();
if ($tags) {
foreach ($tags as $tag) {
echo '<a class="st-chip st-chip-primary st-chip-tag-cloud" href="' . get_tag_link($tag->term_id) . '">' . $tag->name . '</a>';
}
}
?>
<?php <?php
if (function_exists('get_field')) { if (function_exists('get_field')) {
$related_posts = get_field('related_posts', $post_id); $related_posts = get_field('related_posts', $post_id);

View File

@ -1038,6 +1038,10 @@ COMPONENTS
letter-spacing: 1px; letter-spacing: 1px;
} }
.st-chip-tag-cloud {
margin-right: .5em;
}
@media (min-width: 1200px) { @media (min-width: 1200px) {
.st-icon-bar-sticky .st-chip { .st-icon-bar-sticky .st-chip {
margin-top: auto; margin-top: auto;