Woocommerce Related Products
-
Hello, I am consulting the plugin documentation to adapt the plugin to “related products” of woocommerce but no matter how hard I try the code does not work.
I am trying with this:
<? php
// Related Posts
$ terms = wp_get_post_terms ($ post-> ID); // get current categories
$ term_array = []; // Create empty category arrayforeach ($ terms as $ term) {// Loop founf categories
$ term_array [] = $ term-> slug;
}// Render Ajax Load More shortcode
echo do_shortcode (‘[ajax_load_more category = “‘. implode (“, “, $ term_array). ‘” post__not_in = “‘. $ post-> ID. ‘”]’);
?>Could you help me in this regard? Greetings.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Woocommerce Related Products’ is closed to new replies.