Advertisement
simkoG

Untitled

Mar 10th, 2023 (edited)
582
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.39 KB | None | 0 0
  1. <?php
  2.  
  3. function acme_woocomerce_custom_archive_description() {
  4.     if( !function_exists( 'get_field' ) ) {
  5.         return;
  6.     }
  7.  
  8.     $term = get_queried_object();
  9.  
  10.     if( !empty( get_field( 'kategoria_leiras', $term ) ) ) {
  11.         echo wp_kses_post( wpautop( get_field( 'kategoria_leiras',  $term ) ) );
  12.     }
  13. }
  14.  
  15. add_action( 'woocommerce_archive_description', 'acme_woocomerce_custom_archive_description' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement