Make WordPress Core


Ignore:
Timestamp:
12/06/2013 07:17:35 PM (12 years ago)
Author:
DrewAPicture
Message:

Inline documentation fixes for hooks and functions introduced in 3.8.0.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/dashboard.php

    r26704 r26736  
    312312 * @since 3.8.0
    313313 *
    314  * @param string $error_msg Error message.
     314 * @param string $error_msg Optional. Error message. Default false.
    315315 */
    316316function wp_dashboard_quick_press( $error_msg = false ) {
     
    546546 * @since 3.8.0
    547547 *
    548  * @param array $args
     548 * @param array $args {
     549 *     An array of query and display arguments.
     550 *
     551 *     @type int    $display Number of posts to display.
     552 *     @type int    $max     Maximum number of posts to query.
     553 *     @type string $status  Post status.
     554 *     @type string $order   Designates ascending ('ASC') or descending ('DESC') order.
     555 *     @type string $title   Section title.
     556 *     @type string $id      The container id.
     557 * }
     558 * @return bool False if no posts were found. True otherwise.
    549559 */
    550560function wp_dashboard_recent_posts( $args ) {
     
    618628 * @since 3.8.0
    619629 *
    620  * @param int $total_items
     630 * @param int $total_items Optional. Number of comments to query. Default 5.
     631 * @return bool False if no comments were found. True otherwise.
    621632 */
    622633function wp_dashboard_recent_comments( $total_items = 5 ) {
     
    844855 *
    845856 * @since 3.8.0
     857 *
     858 * @param string $widget_id Widget ID.
     859 * @param array  $feeds     Array of RSS feeds.
    846860 */
    847861function wp_dashboard_primary_output( $widget_id, $feeds ) {
Note: See TracChangeset for help on using the changeset viewer.