=== WP Specific Comment === Contributors: davidlink Tags: comments, specific, id Requires at least: 2.0 Tested up to: 2.7.1 Stable tag: 1.0 Allows for the use of a template tag which returns a comment (specified by its ID) for use as an object. == Description == WP Specific Comment provides a template tag for use anywhere in your theme, inside or outside **The Loop**. This template tag will return a specific comment as an object, from which you can retrieve any standard comment data. ####Template Tag To initiate the plugin, place `` into your theme, where `$ID` will be the ID number for the comment you want returned. **Example:** `` will return the comment with the ID of 44. Pretty simple, right? Note: This template tag will not actually display anything. It only sets up a comment to be displayed. You'll have to add in some other standard WordPress Template Tags to get anything to show up on your blog. List of available Comment Tags can be found [here](http://codex.wordpress.org/Template_Tags). **Example:**
The above code would retrieve comment with ID of 1, and then display its author (linked to the author's URL, if provided) in a `
` followed by a `
` containing the comment's text content. Still pretty simple! == Installation == Installation of WP Specific Comment is quick and easy. 1. Upload `wp-specific-comment.php` to the `/wp-content/plugins/` directory 2. Activate the plugin through the 'Plugins' menu in WordPress 3. Place `` in your templates, where `$ID` is will be the numerical ID for the comment you want returned. 4. Add additional [WordPress Comment Tags](http://codex.wordpress.org/Template_Tags) to display the desired data.