tags on article page
This commit is contained in:
parent
05b49120d0
commit
b9eec084c5
13
single.php
13
single.php
@ -10,7 +10,7 @@
|
||||
$post_id = get_the_ID();
|
||||
?>
|
||||
<h1 class="st-article__title"> <?php the_title(); ?> </h1>
|
||||
<a href="<?php echo get_author_posts_url( $post->post_author ); ?>" class="st-article-page__author-link">
|
||||
<a href="<?php echo get_author_posts_url($post->post_author); ?>" class="st-article-page__author-link">
|
||||
<div class="st-article__author-box">
|
||||
<div class="st-article__author-name">
|
||||
<?php the_author() ?>
|
||||
@ -21,6 +21,15 @@
|
||||
</div>
|
||||
</a>
|
||||
<?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
|
||||
if (function_exists('get_field')) {
|
||||
$related_posts = get_field('related_posts', $post_id);
|
||||
@ -64,7 +73,7 @@
|
||||
</section>
|
||||
</section>
|
||||
<section class="st-article-section-grid st-article-section-grid__article-page">
|
||||
|
||||
|
||||
<section class="st-ad-section-long-post-end st-article">
|
||||
<?php
|
||||
if (function_exists('the_ad_group')) {
|
||||
|
Loading…
Reference in New Issue
Block a user