Show Videos in custom loop from a specific video category
-
Hi,
My site is here: https://www.conejovalleyhealingrooms.org/healing-testimonies/
I have a custom loop on a template on this page that is pulling videos from post type ‘video’.
What I’m trying to do is only show videos that are in a specific video category. Here is my code. Do you have any thoughts on how I can get this to work?
<?php $loop = new WP_Query( array( 'post_type' => 'video', 'tax_query' => array( 'taxonomy' => 'video-categories','term' => 'healing') ) ); ?>
Thanks for any help you can provide!
- The topic ‘Show Videos in custom loop from a specific video category’ is closed to new replies.