Answer the question
In order to leave comments, you need to log in
How to get tag data in post body?
Hello!
I want to display tag information in the HTML code inside the post body:
<a class="tag-button w-button" href="<!--Ссылка на метку-->" style="background-color: <!--Цвет Метки--> "> <!--Название метки--> </a>
Answer the question
In order to leave comments, you need to log in
Here is what helped me -
<?php
$all_tags = wp_get_post_tags (get_the_ID(), array('orderby' => 'name', 'order' => 'ASC', 'fields' => 'all'));
$output = "";
foreach ($all_tags as $tag) {
$tag_style = get_field( 'tag_color', "post_tag_$tag->term_id" );
$tag_link = get_tag_link($tag->term_id);
$tag_name = $tag->name;
$output .= '<a class="tag-button" href="' . $tag_link . '" style="background-color: ' . $tag_style . '">' . $tag_name . '</a>';
}
echo $output;
?>
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question