mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-06-28 14:20:15 +00:00
Docs: Correct various docblocks documentation.
See #48303 git-svn-id: https://develop.svn.wordpress.org/trunk@46821 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -1717,10 +1717,10 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null
|
||||
*
|
||||
* @since 2.7.0
|
||||
*
|
||||
* @param string $link The HTML markup for the comment reply link.
|
||||
* @param array $args An array of arguments overriding the defaults.
|
||||
* @param object $comment The object of the comment being replied.
|
||||
* @param WP_Post $post The WP_Post object.
|
||||
* @param string $link The HTML markup for the comment reply link.
|
||||
* @param array $args An array of arguments overriding the defaults.
|
||||
* @param WP_Comment $comment The object of the comment being replied.
|
||||
* @param WP_Post $post The WP_Post object.
|
||||
*/
|
||||
return apply_filters( 'comment_reply_link', $args['before'] . $link . $args['after'], $args, $comment, $post );
|
||||
}
|
||||
@@ -1732,10 +1732,10 @@ function get_comment_reply_link( $args = array(), $comment = null, $post = null
|
||||
*
|
||||
* @see get_comment_reply_link()
|
||||
*
|
||||
* @param array $args Optional. Override default options.
|
||||
* @param int $comment Comment being replied to. Default current comment.
|
||||
* @param int|WP_Post $post Post ID or WP_Post object the comment is going to be displayed on.
|
||||
* Default current post.
|
||||
* @param array $args Optional. Override default options.
|
||||
* @param int|WP_Comment $comment Comment being replied to. Default current comment.
|
||||
* @param int|WP_Post $post Post ID or WP_Post object the comment is going to be displayed on.
|
||||
* Default current post.
|
||||
*/
|
||||
function comment_reply_link( $args = array(), $comment = null, $post = null ) {
|
||||
echo get_comment_reply_link( $args, $comment, $post );
|
||||
|
||||
Reference in New Issue
Block a user