wp_dashboard_cached_rss_widget

函数
wp_dashboard_cached_rss_widget ( $widget_id, $callback, $check_urls = array(), $args )
参数
  • (string) $widget_id The widget ID.
    Required:
  • (callable) $callback The callback function used to display each feed.
    Required:
  • (array) $check_urls RSS feeds.
    Required:
    Default: array()
  • (mixed) $args Optional additional parameters to pass to the callback function.
    Required:
返回值
  • (bool) True on success, false on failure.
定义位置
相关方法
wp_add_dashboard_widgetwp_ajax_dashboard_widgetswp_dashboard_rss_outputwp_dashboard_quick_presswp_dashboard_rss_control
引入
2.5.0
弃用
-

wp_dashboard_cached_rss_widget: 这是一个过滤钩,允许你修改WordPress仪表盘上的RSS提要小工具。这个小工具显示来自RSS提要的最新文章。

检查$check_urls中的所有feed url是否被缓存。

如果$check_urls是空的,寻找$widget_id的仪表盘小工具选项中的rss feed url。如果缓存了,就调用$callback,一个为这个小工具呼出输出的函数。如果没有缓存,回显一个””加载中……””的存根,随后被Ajax调用取代(见/wp-admin/index.php的顶部)。

function wp_dashboard_cached_rss_widget( $widget_id, $callback, $check_urls = array(), ...$args ) {
	$loading    = '<p class="widget-loading hide-if-no-js">' . __( 'Loading&hellip;' ) . '</p><div class="hide-if-js notice notice-error inline"><p>' . __( 'This widget requires JavaScript.' ) . '</p></div>';
	$doing_ajax = wp_doing_ajax();

	if ( empty( $check_urls ) ) {
		$widgets = get_option( 'dashboard_widget_options' );

		if ( empty( $widgets[ $widget_id ]['url'] ) && ! $doing_ajax ) {
			echo $loading;
			return false;
		}

		$check_urls = array( $widgets[ $widget_id ]['url'] );
	}

	$locale    = get_user_locale();
	$cache_key = 'dash_v2_' . md5( $widget_id . '_' . $locale );
	$output    = get_transient( $cache_key );

	if ( false !== $output ) {
		echo $output;
		return true;
	}

	if ( ! $doing_ajax ) {
		echo $loading;
		return false;
	}

	if ( $callback && is_callable( $callback ) ) {
		array_unshift( $args, $widget_id, $check_urls );
		ob_start();
		call_user_func_array( $callback, $args );
		// Default lifetime in cache of 12 hours (same as the feeds).
		set_transient( $cache_key, ob_get_flush(), 12 * HOUR_IN_SECONDS );
	}

	return true;
}

常见问题

FAQs
查看更多 >