返回介绍

wp_widget_rss_process()

发布于 2017-09-11 13:11:34 字数 2820 浏览 1160 评论 0 收藏 0

wp_widget_rss_process( array $widget_rss,  bool $check_feed = true )

Process RSS feed widget data and optionally retrieve feed items.


description

The feed widget can not have more than 20 items or it will reset back to the default, which is 10.

The resulting array has the feed title, feed url, feed link (from channel), feed items, error (if any), and whether to show summary, author, and date. All respectively in the order of the array elements.


参数

$widget_rss

(array) (Required) RSS widget feed data. Expects unescaped data.

$check_feed

(bool) (Optional) Whether to check feed for errors.

Default value: true


返回值

(array)


源代码

File: wp-includes/widgets.php

function wp_widget_rss_process( $widget_rss, $check_feed = true ) {
	$items = (int) $widget_rss['items'];
	if ( $items < 1 || 20 < $items )
		$items = 10;
	$url           = esc_url_raw( strip_tags( $widget_rss['url'] ) );
	$title         = isset( $widget_rss['title'] ) ? trim( strip_tags( $widget_rss['title'] ) ) : '';
	$show_summary  = isset( $widget_rss['show_summary'] ) ? (int) $widget_rss['show_summary'] : 0;
	$show_author   = isset( $widget_rss['show_author'] ) ? (int) $widget_rss['show_author'] :0;
	$show_date     = isset( $widget_rss['show_date'] ) ? (int) $widget_rss['show_date'] : 0;

	if ( $check_feed ) {
		$rss = fetch_feed($url);
		$error = false;
		$link = '';
		if ( is_wp_error($rss) ) {
			$error = $rss->get_error_message();
		} else {
			$link = esc_url(strip_tags($rss->get_permalink()));
			while ( stristr($link, 'http') != $link )
				$link = substr($link, 1);

			$rss->__destruct();
			unset($rss);
		}
	}

	return compact( 'title', 'url', 'link', 'items', 'error', 'show_summary', 'show_author', 'show_date' );
}

更新日志

Versiondescription
2.5.0Introduced.

相关函数

Uses

  • wp-includes/formatting.php: esc_url_raw()
  • wp-includes/formatting.php: esc_url()
  • wp-includes/feed.php: fetch_feed()
  • wp-includes/load.php: is_wp_error()

Used By

  • wp-admin/includes/dashboard.php: wp_dashboard_rss_control()
  • wp-includes/widgets/class-wp-widget-rss.php: WP_Widget_RSS::update()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文