Make WordPress Core

Changeset 35993


Ignore:
Timestamp:
12/17/2015 05:29:39 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Add missing parameter notations to the DocBlock for get_author_posts_url().

See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/author-template.php

    r35545 r35993  
    290290 * @global WP_Rewrite $wp_rewrite
    291291 *
     292 * @param int    $author_id       Author ID.
     293 * @param string $author_nicename Optional. The author's nicename (slug). Default empty.
    292294 * @return string The URL to the author's page.
    293295 */
    294 function get_author_posts_url($author_id, $author_nicename = '') {
     296function get_author_posts_url( $author_id, $author_nicename = '' ) {
    295297    global $wp_rewrite;
    296298    $auth_ID = (int) $author_id;
Note: See TracChangeset for help on using the changeset viewer.