Support

Account

Home Forums ACF PRO Shortcode Reply To: Shortcode

  • Hi Beee,

    Here the code to retrieve the field:

    <?php 
    			if ($term = get_queried_object()) {
    				$taxonomy = $term->taxonomy;
    				if ($taxonomy == "product_cat") {
    					echo get_field('custom_category_description', 'option');
    				}
    			}
    		?>

    Where should I put ‘the_content’?

    Thanks,