Wordpress conditional statements for taxonomy, term, inside a loop not working
This is such a basic problem I'm having but I've tried so many different functions and can't get any to work. On my wordpress website I have created a taxonomy called ' file-formats ' and in this taxonomy I have created these terms (I think these are terms?)... PDF , MOV , PPT and DOC See screenshot below... The problem I have which I can't seem to figure out, is I have a simple WP_Query loop, see below... <?php $downloads = new WP_Query(array( 'post_type' => 'downloads', 'order' => 'ASC', 'posts_per_page' => -1 )); ?> <?php if ($downloads->have_posts()) : ?> <?php while ($downloads->have