wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



post_reply_link › WordPress Function

Seit2.7.0
Veraltetn/v
post_reply_link ( $args = array(), $post = null )
Parameter: (2)
  • (array) $args Optional. Override default options. Default empty array.
    Erforderlich: Nein
    Standard: array()
  • (int|WP_Post) $post Optional. Post ID or WP_Post object the comment is going to be displayed on. Default current post.
    Erforderlich: Nein
    Standard: null
Siehe:
Definiert in:
Codex:

Displays the HTML content for reply to post link.



Quellcode

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