WPINC_comment template.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface CommentTemplateInterface {
    function get_comment_author( $comment_ID = 0 );
    function comment_author( $comment_ID = 0 );
    function get_comment_author_email( $comment_ID = 0 );
    function comment_author_email( $comment_ID = 0 );
    function comment_author_email_link( $linktext = '', $before = '', $after = '', $comment = null );
    function get_comment_author_email_link( $linktext = '', $before = '', $after = '', $comment = null );
    function get_comment_author_link( $comment_ID = 0 );
    function comment_author_link( $comment_ID = 0 );
    function get_comment_author_IP( $comment_ID = 0 );
    function comment_author_IP( $comment_ID = 0 );
    function get_comment_author_url( $comment_ID = 0 );
    function comment_author_url( $comment_ID = 0 );
    function get_comment_author_url_link( $linktext = '', $before = '', $after = '', $comment = 0 );
    function comment_author_url_link( $linktext = '', $before = '', $after = '', $comment = 0 );
    function comment_class( $class = '', $comment = null, $post_id = null, $echo = true );
    function get_comment_class( $class = '', $comment_id = null, $post_id = null );
    function get_comment_date( $d = '', $comment_ID = 0 );
    function comment_date( $d = '', $comment_ID = 0 );
    function get_comment_excerpt( $comment_ID = 0 );
    function comment_excerpt( $comment_ID = 0 );
    function get_comment_ID();
    function comment_ID();
    function get_comment_link( $comment = null, $args = array() );
    function get_comments_link( $post_id = 0 );
    function comments_link( $deprecated = '', $deprecated_2 = '' );
    function get_comments_number( $post_id = 0 );
    function comments_number( $zero = false, $one = false, $more = false, $deprecated = '' );
    function get_comments_number_text( $zero = false, $one = false, $more = false );
    function get_comment_text( $comment_ID = 0, $args = array() );
    function comment_text( $comment_ID = 0, $args = array() );
    function get_comment_time( $d = '', $gmt = false, $translate = true );
    function comment_time( $d = '' );
    function get_comment_type( $comment_ID = 0 );
    function comment_type( $commenttxt = false, $trackbacktxt = false, $pingbacktxt = false );
    function get_trackback_url();
    function trackback_url( $deprecated_echo = true );
    function trackback_rdf( $deprecated = '' );
    function comments_open( $post_id = null );
    function pings_open( $post_id = null );
    function wp_comment_form_unfiltered_html_nonce();
    function comments_template( $file = '/comments.php', $separate_comments = false );
    function comments_popup_link( $zero = false, $one = false, $more = false, $css_class = '', $none = false );
    function get_comment_reply_link( $args = array(), $comment = null, $post = null );
    function comment_reply_link($args = array(), $comment = null, $post = null);
    function get_post_reply_link($args = array(), $post = null);
    function post_reply_link($args = array(), $post = null);
    function get_cancel_comment_reply_link( $text = '' );
    function cancel_comment_reply_link( $text = '' );
    function get_comment_id_fields( $id = 0 );
    function comment_id_fields( $id = 0 );
    function comment_form_title( $noreplytext = false, $replytext = false, $linktoparent = true );
    function wp_list_comments( $args = array(), $comments = null );
    function comment_form( $args = array(), $post_id = null );
}