wp_dashboard_primary_output( string $widget_id, array $feeds )
Displays the WordPress events and news feeds.
Parameters
- $widget_id
-
(string) (Required) Widget ID.
- $feeds
-
(array) (Required) Array of RSS feeds.
Source
File: wp-admin/includes/dashboard.php
function wp_dashboard_primary_output( $widget_id, $feeds ) {
foreach ( $feeds as $type => $args ) {
$args['type'] = $type;
echo '<div class="rss-widget">';
wp_widget_rss_output( $args['url'], $args );
echo '</div>';
}
} Changelog
| Version | Description |
|---|---|
| 4.8.0 | Removed popular plugins feed. |
| 3.8.0 | Introduced. |
© 2003–2021 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/wp_dashboard_primary_output