在某些Woocommerce类别页面上,我想将默认的“类别页面”标题更改为自定义名称。我不想在后端更改原始的“名称”。
functions.php中是否可以使用一些代码?
答案 0 :(得分:1)
以下内容可让您针对特定产品类别自定义Woocommerce产品类别页面上的页面标题:
add_filter( 'woocommerce_page_title', 'customize_woocommerce_page_title', 10, 1 );
function customize_woocommerce_page_title( $page_title) {
// Custom title for the product category 't-shirts'
if ( is_product_category('t-shirts') ) {
$page_title = 'Something';
}
// Custom title for the product category 'hoodies'
elseif ( is_product_category('hoodies') ) {
$page_title = 'Something else';
}
return $page_title;
}
代码进入您的活动子主题(或活动主题)的function.php文件中。经过测试和工作。