您可以在每个提要的底部添加一些代码,这将为您提供所需的结果。可以将此代码添加到函数中。php或将其添加为插件
/** Add custom feed content footer
* @param $content
* @return string
*/
function add_feed_content($content) {
if(is_feed()) {
$post_type = get_post_type( get_the_ID() );
$content .= \'<footer>\'.PHP_EOL;
$content .= \'<p>Some advert here</p>\'.PHP_EOL;
$content .= \'</footer>\'.PHP_EOL;
}
return $content;
}
add_filter(\'the_excerpt_rss\', \'add_feed_content\');
add_filter(\'the_content\', \'add_feed_content\');
编辑:假设你控制了RSS提要,但更多地思考你的问题,也许你没有