Woocommerce 中的自定义类别页面标题
Custom category page title in Woocommerce
在某些 Woocommerce 类别页面上,我想将默认类别页面标题更改为自定义内容。我不想更改后端的原始 "name"。
在 functions.php 中是否有一些我可以使用的代码?
以下内容将允许您针对特定产品类别自定义 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;
}
代码进入活动 child 主题(或活动主题)的 function.php 文件。测试和工作。
在某些 Woocommerce 类别页面上,我想将默认类别页面标题更改为自定义内容。我不想更改后端的原始 "name"。
在 functions.php 中是否有一些我可以使用的代码?
以下内容将允许您针对特定产品类别自定义 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;
}
代码进入活动 child 主题(或活动主题)的 function.php 文件。测试和工作。