Parsed: 118469
<?php /** * Comment template functions * * These functions are meant to live inside of the WordPress loop. * * @package WordPress * @subpackage Template */ /* function get_comment_author() – Retrieves the author of the current comment. */ /* function comment_author() – Displays the author of the current comment. */ /* function get_comment_author_email() – Retrieves the email of the author of the current comment. */ /* function comment_author_email() – Displays the email of the author of the current global $comment. */ /* function comment_author_email_link() – Display the html email link to the author of the current comment. */ /* function get_comment_author_email_link() – Returns the HTML email link to the author of the current comment. */ /* function get_comment_author_link() – Retrieves the HTML link to the URL of the author of the current comment. */ /* function comment_author_link() – Display the html link to the url of the author of the current comment. */ /* function get_comment_author_IP() – Retrieves the IP address of the author of the current comment. */ /* function comment_author_IP() – Display the IP address of the author of the current comment. */ /* function get_comment_author_url() – Retrieves the URL of the author of the current comment, not linked. */ /* function comment_author_url() – Displays the URL of the author of the current comment, not linked. */ /* function get_comment_author_url_link() – Retrieves the HTML link of the URL of the author of the current comment. */ /* function comment_author_url_link() – Displays the HTML link of the url of the author of the current comment. */ /* function comment_class() – Generates semantic classes for each comment element. */ /* function get_comment_class() – Returns the classes for the comment div as an array. */ /* function get_comment_date() – Retrieves the comment date of the current comment. */ /* function comment_date() – Displays the comment date of the current comment. */ /* function get_comment_excerpt() – Retrieves the excerpt of the given comment. */ /* function comment_excerpt() – Displays the excerpt of the current comment. */ /* function get_comment_ID() – Retrieves the comment ID of the current comment. */ /* function comment_ID() – Display the comment id of the current comment. */ /* function get_comment_link() – Retrieve the link to a given comment. */ /* function get_comments_link() – Retrieves the link to the current post comments. */ /* function comments_link() – Display the link to the current post comments. */ /* function get_comments_number() – Retrieves the amount of comments a post has. */ /* function comments_number() – Displays the language string for the number of comments the current post has. */ /* function get_comments_number_text() – Displays the language string for the number of comments the current post has. */ /* function get_comment_text() – Retrieves the text of the current comment. */ /* function comment_text() – Displays the text of the current comment. */ /* function get_comment_time() – Retrieves the comment time of the current comment. */ /* function comment_time() – Displays the comment time of the current comment. */ /* function get_comment_type() – Retrieves the comment type of the current comment. */ /* function comment_type() – Display the comment type of the current comment. */ /* function get_trackback_url() – Retrieves the current post’s trackback URL. */ /* function trackback_url() – Display the current post’s trackback URL. */ /* function trackback_rdf() – Generate and display the RDF for the trackback information of current post. */ /* function comments_open() – Determines whether the current post is open for comments. */ /* function pings_open() – Determines whether the current post is open for pings. */ /* function wp_comment_form_unfiltered_html_nonce() – Display form token for unfiltered comments. */ /* function comments_template() – Loads the comment template specified in $file. */ /* function comments_popup_link() – Displays the link to the comments for the current post ID. */ /* function get_comment_reply_link() – Retrieves HTML content for reply to comment link. */ /* function comment_reply_link() – Displays the HTML content for reply to comment link. */ /* function get_post_reply_link() – Retrieve HTML content for reply to post link. */ /* function post_reply_link() – Displays the HTML content for reply to post link. */ /* function get_cancel_comment_reply_link() – Retrieve HTML content for cancel comment reply link. */ /* function cancel_comment_reply_link() – Display HTML content for cancel comment reply link. */ /* function get_comment_id_fields() – Retrieves hidden input HTML for replying to comments. */ /* function comment_id_fields() – Outputs hidden input HTML for replying to comments. */ /* function comment_form_title() – Displays text based on comment reply status. */ /* function _get_comment_reply_id */ /* function wp_list_comments() – Displays a list of comments. */ /* function comment_form() – Outputs a complete commenting form for use within a template. */