📌  相关文章
📜  如何更改 woocommerce 标头消息 这是您可以向商店添加新产品的地方. - 打字稿代码示例

📅  最后修改于: 2022-03-11 14:48:34.540000             🧑  作者: Mango

代码示例1
// Remove the Shop page subheading
function my_remove_shop_page_header_subheading( $subheading ) {
 
    if ( is_shop() ) {
        $subheading = false;
    }
 
    // Return the subheading
    return $subheading;
    
}
add_filter( 'ocean_post_subheading', 'my_remove_shop_page_header_subheading' );