Answer the question
In order to leave comments, you need to log in
How to insert content in each product for a separate woocommerce category?
Good day, there are several categories, and for products of each category you need to display unique content (shorcode) (in the product). I'm not sure I explained the point exactly.
Answer the question
In order to leave comments, you need to log in
If I understand correctly, it can be done like this:
$terms = wp_get_post_terms($post->ID, 'product_cat');
foreach ( $terms as $term ){
if($term->slug === 'something'){
do_shortcode('[shortcode_name]')
}
};
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question