post_reply_link()WP 2.7.0

Displays the HTML content for reply to post link.

Хуков нет.

Возвращает

null. Ничего (null).

Использование

post_reply_link( $args, $post );
$args(массив)
Override default options.
По умолчанию: empty array
$post(int|WP_Post)
Post ID or WP_Post object the comment is going to be displayed on.
По умолчанию: current post

Заметки

Список изменений

С версии 2.7.0 Введена.

Код post_reply_link() WP 6.5.2

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