mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
6 lines
185 B
Text
6 lines
185 B
Text
add_filter( 'woocommerce_show_page_title', 'wc_hide_cat_page_title' );
|
|
|
|
function wc_hide_cat_page_title( $title ) {
|
|
if ( is_product_category() ) $title = false;
|
|
return $title;
|
|
}
|