wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_dashboard_primary_output › WordPress Function

Seit3.8.0
Veraltetn/v
wp_dashboard_primary_output ( $widget_id, $feeds )
Parameter: (2)
  • (string) $widget_id Widget ID.
    Erforderlich: Ja
  • (array) $feeds Array of RSS feeds.
    Erforderlich: Ja
Definiert in:
Codex:
Changelog:
  • 4.8.0

Displays the WordPress events and news feeds.



Quellcode

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>';
	}
}