Add 'comment_reply_link_args' filter for get_comment_reply_link() arguments.

props joedolson, aaroncampbell, DrewAPicture.
fixes #10569.

git-svn-id: https://develop.svn.wordpress.org/trunk@30039 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Sergey Biryukov 2014-10-27 11:44:40 +00:00
parent bb5aedf3d9
commit 2672e35d43
1 changed files with 12 additions and 0 deletions

View File

@ -1339,6 +1339,18 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null
return false;
}
/**
* Filter the comment reply link arguments.
*
* @since 4.1.0
*
* @param array $args Comment reply link arguments. See {@see get_comment_reply_link()}
* for more information on accepted arguments.
* @param object $comment The object of the comment being replied to.
* @param WP_Post $post The WP_Post object.
*/
$args = apply_filters( 'comment_reply_link_args', $args, $comment, $post );
if ( get_option( 'comment_registration' ) && ! is_user_logged_in() ) {
$link = sprintf( '<a rel="nofollow" class="comment-reply-login" href="%s">%s</a>',
esc_url( wp_login_url( get_permalink() ) ),