apply_filters( ‘wp_comment_reply’, string $content, array $args )

Filters the in-line comment reply-to form output in the Comments list table.

Description

Returning a non-empty value here will short-circuit display of the in-line comment-reply form in the Comments list table, echoing the returned value instead.

See also

Parameters

$contentstring
The reply-to form content.
$argsarray
An array of default args.

Source

$content = apply_filters(
	'wp_comment_reply',
	'',
	array(
		'position' => $position,
		'checkbox' => $checkbox,
		'mode'     => $mode,
	)
);

Changelog

VersionDescription
2.7.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.