mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
9 lines
416 B
Text
9 lines
416 B
Text
function oceanwp_woocommerce_taxonomy_archive_description() {
|
|
if ( is_tax( array( 'product_cat', 'product_tag' ) ) && get_query_var( 'paged' ) != 0 ) {
|
|
$description = wc_format_content( term_description() );
|
|
if ( $description ) {
|
|
echo wp_kses_post( $description );
|
|
}
|
|
}
|
|
}
|
|
add_action( 'woocommerce_archive_description', 'oceanwp_woocommerce_taxonomy_archive_description');
|