Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function kl_woocommerce_taxonomy_archive_description() {
  2. if ( is_tax( array( 'product_cat', 'product_tag' ) ) && get_query_var( 'paged' ) != 0 ) {
  3. $description = wc_format_content( kl_description() );
  4. if ( $description ) {
  5. echo '<div class="kl-description">' . $description . '</div>';
  6. }
  7. }
  8. }
  9. add_action( 'woocommerce_archive_description', 'kl_woocommerce_taxonomy_archive_description');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement