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



post_reply_link › WordPress Function

Da2.7.0
Deprecaton/a
post_reply_link ( $args = array(), $post = null )
Parametri: (2)
  • (array) $args Optional. Override default options. Default empty array.
    Richiesto: No
    Default: array()
  • (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 post link.



Sorgenti

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