Answers for "wc php get acf fields product category"

PHP
0

wc php get acf fields product category

<?php 
$queried_object = get_queried_object(); 
$taxonomy = $queried_object->taxonomy;
$term_id = $queried_object->term_id;  

the_field('youracffield', $taxonomy . '_' . $term_id);
	
?>
Posted by: Guest on January-06-2022

Browse Popular Code Answers by Language