Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Can't get WordPress custom post type posts by custom taxonomy Reply To: Can't get WordPress custom post type posts by custom taxonomy

#209638
Dragore
Participant

Heres the a snippet that I use, hopefully it helps.

<?php $recent = new WP_Query(array('cat' = 'CAT_ID')); while($recent->have_posts()) : $recent->the_post(); ?>
...
<?php endwhile; ?>

Then I use the snippet

<?php echo types_render_field('TYPES_FIELD_SLUG'); ?>

to get the types custom field.