I am using the shortcode of the Woocommerce Projects plugin and I am stuck how can I only can show the projects that are in the same category as the project that the user is viewing.
I use this code:
Visit more projects of
<?php
$terms_as_text = get_the_term_list( $post->ID, 'project-category' );
if ( $terms_as_text ) {
echo wp_strip_all_tags( $terms_as_text);
}
?>?
<?php echo do_shortcode( '[projects limit="3" columns="3" orderby="rand" order="desc" exclude_categories=""]' ); ?>
The text on top is working but how can I exclude all but the active category in the shortcode?
Try this:
I'm surprised the extension doesn't come with that functionality. Seems a pretty obvious thing to include.
Also I got to say, this is a poor use of WooCommerce. There are much better ways to display portfolios.
Anyway, hope that helps.