Y
Y
YaBlogo2021-12-14 21:16:17
HTML
YaBlogo, 2021-12-14 21:16:17

How to make an HTML map of labels on a WordPress site?

On WordPress, you can display a label cloud with standard widgets, but you need to make a label map. Like here https://qwebix.ru/sitemap
Here are the headings and posts of headings, you need the same one but without posts - just anchor links of tags. Maybe there is some kind of plugin or function that can be added to the file?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Artem Zolin, 2021-12-15
@artzolin

if ( $tags = get_tags() ) {
  $html = '<ul class="post_tags">';

  foreach ( $tags as $tag ) {
    $html .= '<li>';
      $html .= '<a href="' . get_tag_link( $tag->term_id ) . '" class="' . $tag->slug . '">' . $tag->name . '</a>';
    $html .= '</li>';
  }

  $html .= '</ul>';

  echo $html;
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question