Make WordPress Core


Ignore:
Timestamp:
12/01/2014 01:33:34 AM (11 years ago)
Author:
wonderboymusic
Message:

Improve various @param docs for src/wp-includes/*.

See #30224.

File:
1 edited

Legend:

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

    r30656 r30681  
    708708 *
    709709 * @param string $deprecated   Not Used.
    710  * @param bool  $deprecated_2 Not Used.
     710 * @param string $deprecated_2 Not Used.
    711711 */
    712712function comments_link( $deprecated = '', $deprecated_2 = '' ) {
     
    13541354 * @param int|WP_Post $post    Post ID or WP_Post object the comment is going to be displayed on.
    13551355 *                             Default current post.
    1356  * @return mixed Link to show comment form, if successful. False, if comments are closed.
     1356 * @return null|false|string Link to show comment form, if successful. False, if comments are closed.
    13571357 */
    13581358function get_comment_reply_link( $args = array(), $comment = null, $post = null ) {
     
    14671467 * @param int|WP_Post $post    Optional. Post ID or WP_Post object the comment is going to be displayed on.
    14681468 *                             Default current post.
    1469  * @return string|bool|null Link to show comment form, if successful. False, if comments are closed.
     1469 * @return false|null|string Link to show comment form, if successful. False, if comments are closed.
    14701470 */
    14711471function get_post_reply_link($args = array(), $post = null) {
Note: See TracChangeset for help on using the changeset viewer.