wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



comment_reply_link › WordPress Function

Da2.7.0
Deprecaton/a
comment_reply_link ( $args = array(), $comment = null, $post = null )
Parametri: (3)
  • (array) $args Optional. Override default options. Default empty array.
    Richiesto: No
    Default: array()
  • (int|WP_Comment) $comment Optional. Comment being replied to. Default current comment.
    Richiesto: No
    Default: null
  • (int|WP_Post) $post Optional. Post ID or WP_Post object the comment is going to be displayed on. Default current post.
    Richiesto: No
    Default: null
Vedi:
Definito a:
Codex:

Displays the HTML content for reply to comment link.



Sorgenti

function comment_reply_link( $args = array(), $comment = null, $post = null ) {
	echo get_comment_reply_link( $args, $comment, $post );
}