woo_breadcrumbs函数和custom-post-type

时间:2012-09-17 16:21:46

标签: wordpress custom-post-type breadcrumbs woothemes

我正在使用woo_breadcrumbs函数,需要插入curent自定义帖子类型的名称。目前它显示的是主页+类别Home -> Category。有一种简单的方法来调用当前Custom-Post-Type的名称并将其插入主页和类别之间吗?函数文件夹中admin-fuction.php文件内的函数。

谢谢!

1 个答案:

答案 0 :(得分:0)

到目前为止,我已找到以下内容,希望它有所帮助。这是针对单一分类法编写的:

add_filter( 'woo_breadcrumbs_args', 'woo_video_filter_breadcrumbs_args', 10 );

if ( ! function_exists( 'woo_video_filter_breadcrumbs_args' ) ) {
    function woo_video_filter_breadcrumbs_args( $args ) {
        $args['singular_video_taxonomy'] = 'videos';
        return $args;
    }
}