Skip to content

Instantly share code, notes, and snippets.

@Scordavis
Forked from agragregra/WordPress get tags
Created May 2, 2017 20:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Scordavis/003e4eff435ab47be65362174c3c0b07 to your computer and use it in GitHub Desktop.
Save Scordavis/003e4eff435ab47be65362174c3c0b07 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