wp_dashboard_rss_output

函式
wp_dashboard_rss_output ( $widget_id )

wp_dashboard_rss_output:此函式用於顯示rss儀表盤小工具的內容。它檢索RSS提要資料,對其進行格式化,並將其顯示在儀表盤上。

顯示通用的儀表盤RSS小工具feed。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
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>';
}
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>'; }
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>';
}

常見問題

FAQs
檢視更多 >