Page Tags

Easy tag function for any page.

Author:Rui Da Costa (profile at wordpress.org)
WordPress version required:2.0
WordPress version tested:2.5
Plugin version:0.2
Added to WordPress repository:08-04-2008
Last updated:08-04-2008
Warning! This plugin has not been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.
Rating, %:0
Rated by:0
Plugin URI:http://wordpress.org/#
Total downloads:1 955
Active installs:90+
plugin download
Click to start download

This plugin adds the function get_page_tags which allows you to get an array of tag objects for any page or post you want.

Usage:

<?php
$tags = get_page_tags($post->ID);
foreach($tags as $tag)
{
    echo '<li id="tag-'.$tag->term_id.'"><a href="/'.$tag->slug.'">'.$tag->name.' ('.$tag->count.')</a></li>';
}
?>

The array contains tag objects identical to the tag objects returned by the get_the_tags() Template Function.