
FacetWP works out of the box with our Custom Post Type, Custom Taxonomy and many of our Custom Meta fields (date ranges, specific text filters and search). If you want to incorporate the added flexibility of filtering by our relationship fields, the Pods Integration for FacetWP adds that flexibility.
Calling a Pods Template inside a FacetWP loop:
<?php /** * 'future_ready_resourc' is the Pod name * 'Combined Resources View' is the Pod template name */ ?> <?php while ( have_posts() ): the_post(); ?> <?php echo pods( 'future_ready_resourc', get_the_id() )->template( 'Combined Resources View' ); ?> <?php endwhile; ?>