我试图在自定义Wordpress RSS提要中只打印每篇文章的父类别和该类别的永久链接。
使用<?php the_category_rss(); ?>
打印帖子的所有类别(父类别和子类别),如下所示:
<category><![CDATA[Category 1]]></category>
<category><![CDATA[Category 2]]></category>
<category><![CDATA[Category 3]]></category>
我只想打印帖子的父类别,而不是父类别和子类别。
我还在寻找在RSS提要中打印父类别永久链接的正确方法。
我觉得这样做的方法是一个过滤器,但我不知道如何实现它。这是我现在拥有的,但它返回1
而不是父类别名称:
add_filter(\'the_category_rss\', \'only_parent_rss_categories\');
function only_parent_rss_categories( $allparents ) {
$categories = get_the_category();
$category = $category->category_parent == 0;
$allparents= esc_html("<category><![CDATA[{$category}]]></category>");
return $allparents;
}
最合适的回答,由SO网友:aronmoshe_m 整理而成
我仍然对如何使用Wordpress函数来实现这一点感兴趣the_category_rss()
, 但我确实找到了另一种方法:
<?php $parentsonly = "";
// loop through categories
foreach((get_the_category()) as $category) {
// exclude child categories
if ($category->category_parent == 0) {
$parentsonly = \'<category domain="\' . get_category_link($category->cat_ID) . \'">\' . $category->name . \'</category>\';
}
}
echo $parentsonly; ?>
这将以正确的RSS验证格式返回每个父类别,使用
<category>
和
domain
对于类别URL:
<category domain="http://www.yourdomain.com/category-archive/">
我的类别</category>
希望这对其他人有帮助!