我只想在我的网站中显示部分产品名称,但只在产品页面、支票、购物车和发票中显示全名,如下所示:
有人能帮我吗?如何在分类页面中只显示产品名称的一部分-WordPress With Woodcomells
1 个回复
SO网友:Ademir Ogliari
我通过以下方式解决了此问题:
function hide_product_title_part( $title, $id ) {
if ( ( is_front_page() || is_shop() || is_product_tag() || is_product_category() ) && get_post_type( $id ) === \'product\' ) {
if (strstr($title, ":")) {
$new_title = explode(":", $title);
return $new_title[1];
} else {
return $title;
}
} else {
return $title;
}
}
add_filter( \'the_title\', \'hide_product_title_part\', 10, 2 );