vitaliykurganskiy
5/17/2016 - 5:28 PM

WordPress get tags

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