RSS的前缀Wordpress自定义帖子标题

时间:2012-09-17 16:24:57

标签: wordpress rss title custom-post-type

是否可以为自定义后期wordpress标题添加前缀,以使其显示在RSS Feed和其他共享媒体上?

例如:

自定义帖子类型=产品 标题=一个新的茶杯

产量=产品 - 新的茶杯

1 个答案:

答案 0 :(得分:2)

尝试过滤the_title_rss并在自定义帖子类型不是post时添加自定义帖子类型:

function rss_cpt_title($title) {
    global $post;
    $post_type = get_post_type($post->ID);
    if ($post_type != 'post'){
        $title = $post_type . ' - ' . $title;
    }
    return $title;
}
add_filter('the_title_rss', 'rss_cpt_title');

你可能需要摆弄条件,因为get_post_type可能会返回一个slug,它可能区分大小写。