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