Changeset 26736 for trunk/src/wp-admin/includes/dashboard.php
- Timestamp:
- 12/06/2013 07:17:35 PM (12 years ago)
- File:
-
- 1 edited
-
trunk/src/wp-admin/includes/dashboard.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r26704 r26736 312 312 * @since 3.8.0 313 313 * 314 * @param string $error_msg Error message.314 * @param string $error_msg Optional. Error message. Default false. 315 315 */ 316 316 function wp_dashboard_quick_press( $error_msg = false ) { … … 546 546 * @since 3.8.0 547 547 * 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. 549 559 */ 550 560 function wp_dashboard_recent_posts( $args ) { … … 618 628 * @since 3.8.0 619 629 * 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. 621 632 */ 622 633 function wp_dashboard_recent_comments( $total_items = 5 ) { … … 844 855 * 845 856 * @since 3.8.0 857 * 858 * @param string $widget_id Widget ID. 859 * @param array $feeds Array of RSS feeds. 846 860 */ 847 861 function wp_dashboard_primary_output( $widget_id, $feeds ) {
Note: See TracChangeset
for help on using the changeset viewer.