我从外部数据订阅创建产品自定义帖子,填充一些自定义字段并自动显示产品规格。
由于这些产品很多,所以在自定义帖子发布后,会对每一个产品进行手动审查。正是在这个时候,我希望我的读者在feed中看到有评论的产品。
到目前为止,我找到的唯一方法是在审阅后修改帖子GUID,使其再次出现在提要中。
另一方面,在法典中我们可以阅读Never, ever, change the contents of the GUID column, under any circumstances.http://codex.wordpress.org/Changing_The_Site_URL#Important_GUID_Note
这种情况是否适合修改guid,或者是否有其他方法可以在提要中再次提供这些评论?
另一种可能性是修改控制wordpress主提要的查询,但还没有找到按照这些准则进行操作的方法Adding posts of custom type into the main feed
function myfeed_request($qv) {
if ( isset( $qv[\'feed\'] ) ) {
$qv[\'post_type\'] = array(\'post\', \'cars\', \'bikes\', \'trucks\');
//$qv[\'seccion\'] = \'reviews\';
$qv[\'tax_query\'] = array(
\'relation\' => \'OR\',
array(
\'taxonomy\' => \'section\',
\'field\' => \'slug\',
\'terms\' => array( \'reviews\' )
),
array(
\'taxonomy\' => \'post_format\',
\'field\' => \'slug\',
\'terms\' => array( \'post\' )
)
)
}
return $qv;
}
add_filter(\'request\', \'myfeed_request\');
非常感谢