我正在尝试仅为每个帖子打印父类别,并在自定义Wordpress RSS feed中打印该类别的永久链接。
使用<?php the_category_rss(); ?>
打印帖子的所有类别(父类别和子类别),如下所示:
<category><![CDATA[Category 1]]></category>
<category><![CDATA[Category 2]]></category>
<category><![CDATA[Category 3]]></category>
我只想打印帖子的父类别,而不是父子类别。
我也在寻找在RSS feed中打印父类别的永久链接的正确方法。
我觉得这样做的方法是过滤器,但是我不确定如何实现它。这就是我现在拥有的,但是它返回一个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;
}
答案 0 :(得分:0)
我仍然想听听如何使用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>
希望这对其他人有帮助!