Make WordPress Core


Ignore:
Timestamp:
08/30/2015 03:20:24 AM (9 years ago)
Author:
wonderboymusic
Message:

Fix the doc block syntax for the 'wp_get_current_commenter' filter.

Props dimadin.
Fixes #33304.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/comment-functions.php

    r33806 r33811  
    13551355     * @since 3.1.0
    13561356     *
    1357      * @param string $comment_author       Comment author's name.
    1358      * @param string $comment_author_email Comment author's email.
    1359      * @param string $comment_author_url   Comment author's URL.
     1357     * @param array $comment_author_data {
     1358     *     An array of current commenter variables.
     1359     *
     1360     *     @type string $comment_author       The name of the author of the comment. Default empty.
     1361     *     @type string $comment_author_email The email address of the `$comment_author`. Default empty.
     1362     *     @type string $comment_author_url   The URL address of the `$comment_author`. Default empty.
     1363     * }
    13601364     */
    13611365    return apply_filters( 'wp_get_current_commenter', compact('comment_author', 'comment_author_email', 'comment_author_url') );
Note: See TracChangeset for help on using the changeset viewer.