前面我们创建了wordpress添加post_type自定义文章类型和调用自定义post_type文章,现在yoast 面包屑导航出现home 》product 》分类1,想要把product这一层隐藏要如何操作呢?

  以下是相关代码修改



//yoast breadcrumb product
add_filter( 'wpseo_breadcrumb_links', 'wpse_100012_override_yoast_breadcrumb_trail' );

function wpse_100012_override_yoast_breadcrumb_trail( $links ) {
global $product;

if ( is_singular( 'product' ) ) {
$breadcrumb[] = array(
'url' => get_permalink( get_option( '' ) ),
'text' => '',
);

array_splice( $links, 1, -3, $breadcrumb );
}

return $links;
}