时间:2024-03-10
WordPress函数wp_rss用于输出指定数量的RSS条目,wp_rss()函数位于rss.php,但自3.0.0版本起,已不建议使用rss.php,因此,推荐使用fetch_feed()函数。
wp_rss( string $url, int $num_items = -1 )
$url
字符串
feed地址
$num_items
整数
获取RSS的数量。
include_once(ABSPATH . WPINC . '/rss.php'); wp_rss('https://www.tiezhushuo.com/feed/', 5);
wp_rss()函数位于:wp-includes/rss.php
相关函数:
fetch_rss()
get_rss()
Copyright © 2019-2024 thinkphp.xyz