wp_dashboard_rss_output( string $widget_id )

Display generic dashboard RSS widget feed.


Parameters

$widget_id string Required

Top ↑

Source

File: wp-admin/includes/dashboard.php. View all references

function wp_dashboard_rss_output( $widget_id ) {
	$widgets = get_option( 'dashboard_widget_options' );
	echo '<div class="rss-widget">';
	wp_widget_rss_output( $widgets[ $widget_id ] );
	echo '</div>';
}


Top ↑

Changelog

Changelog
Version Description
2.5.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.