P
P
Philipp Soldunov2016-09-25 15:14:11
WordPress
Philipp Soldunov, 2016-09-25 15:14:11

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>

I'm using the default taxonomy for labels. I created a custom tag color field via ACF "tag-color". Thanks in advance!

Answer the question

In order to leave comments, you need to log in

2 answer(s)
P
Philipp Soldunov, 2016-09-25
@psoldunov

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;
        ?>

S
Sn0wSky, 2016-09-25
@Sn0wSky

Getting taxonomy fields in ACF

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question