Changeset 45450
- Timestamp:
- 05/26/2019 10:47:23 PM (6 years ago)
- Location:
- trunk/src/wp-admin/includes
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/dashboard.php
r45438 r45450 989 989 * @since 2.5.0 990 990 * 991 * @param string $widget_id 992 * @param callable $callback 993 * @param array $check_urls RSS feeds 991 * @param string $widget_id The widget ID. 992 * @param callable $callback The callback funtion used to display each feed. 993 * @param array $check_urls RSS feeds 994 * @param mixed ...$args Optional additional parameters to pass to the callback function when it's called. 994 995 * @return bool False on failure. True on success. 995 996 */ -
trunk/src/wp-admin/includes/media.php
r45334 r45450 477 477 478 478 /** 479 * Adds the iframe to display content for the media upload page479 * Outputs the iframe to display the media upload page. 480 480 * 481 481 * @since 2.5.0 … … 483 483 * @global int $body_id 484 484 * 485 * @param string|callable $content_func 486 */ 487 function wp_iframe( $content_func /* ... */ ) { 485 * @param callable $content_func Function that outputs the content. 486 * @param mixed ...$args Optional additional parameters to pass to the callback function when it's called. 487 */ 488 function wp_iframe( $content_func ) { 488 489 _wp_admin_html_begin(); 489 490 ?>
Note: See TracChangeset
for help on using the changeset viewer.