wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



comment_reply_link › WordPress Function

Depuis2.7.0
Dépréciéen/a
comment_reply_link ( $args = array(), $comment = null, $post = null )
Paramètres: (3)
  • (array) $args Optional. Override default options. Default empty array.
    Requis: Non
    Défaut: array()
  • (int|WP_Comment) $comment Optional. Comment being replied to. Default current comment.
    Requis: Non
    Défaut: null
  • (int|WP_Post) $post Optional. Post ID or WP_Post object the comment is going to be displayed on. Default current post.
    Requis: Non
    Défaut: null
Voir:
Défini(e) dans:
Codex:

Displays the HTML content for reply to comment link.



Source

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