Skip to content

Instantly share code, notes, and snippets.

@brynzovskii
Forked from agragregra/WordPress get tags
Created June 20, 2018 14:36
Show Gist options
  • Save brynzovskii/8737b6d083f318cd3e72d09b40eec638 to your computer and use it in GitHub Desktop.
Save brynzovskii/8737b6d083f318cd3e72d09b40eec638 to your computer and use it in GitHub Desktop.
<?php
$tags = get_tags();
if ($tags) {
foreach ($tags as $tag) {
echo '<p>Tag: <a href="' . get_tag_link( $tag->term_id ) . '" title="' . sprintf( __( "View all posts in %s" ), $tag->name ) . '" ' . '>' . $tag->name.'</a> </p> ';
}
}
?>
<?php
$tags = wp_get_post_tags($post->ID);
if ($tags) {
foreach($tags as $tag) {
echo '<p>' . $title . '<a href="' . get_term_link( $tag, 'post_tag' ) . '" title="' . sprintf( __( "View all posts in %s" ), $tag->name ) . '" ' . '>' . $tag->name.'</a> has ' . $tag->count . ' post(s). </p> ';
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment