我想知道如何在WP 4.4中的主RSS源中添加自定义分类法及其术语。
我试过了:
function myfeed_request($qv) {
if (isset($qv['feed']))
$qv['taxonomy'] = array(
'relation' => 'AND',
array(
'taxonomy' => 'Issues',
),
array(
'taxonomy' => 'Reissues',
),
);
return $qv;
}
add_filter('request', 'myfeed_request');
但是当我转到http://www.example.com/feed时,它没有在RSS Feed中表达任何自定义分类术语。自定义分类法的名称是"问题"和"重新发行"
我完全失去了。谢谢你的帮助!