mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
https://stackoverflow.com/questions/76836049/hide-category-description-for-all-users-and-visitors/76837219
6 lines
287 B
Text
6 lines
287 B
Text
add_action('woocommerce_archive_description', 'remove_category_archive_description', 2 );
|
|
function remove_category_archive_description(){
|
|
if( is_product_category() ) {
|
|
remove_action('woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
|
|
}
|
|
}
|