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



post_reply_link › WordPress Function

Depuis2.7.0
Dépréciéen/a
post_reply_link ( $args = array(), $post = null )
Paramètres: (2)
  • (array) $args Optional. Override default options. Default empty array.
    Requis: Non
    Défaut: array()
  • (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 post link.



Source

function post_reply_link( $args = array(), $post = null ) {
	echo get_post_reply_link( $args, $post );
}