I’m trying to display data from two Pods onto one page and I’m having issues with that. Mainly because I know I need to use multiple loops but with TwentyTen, things have changed so I’m wondering what the best method to do this is from now on. Especially since Pods uses a somewhat different syntax in some cases.
For example, here’s how I went ahead to find records from the two pods:
Second, all the data I need from the first pod inquiry, Artists, shows up just fine on my page. No issues. The second, which is only used in one place, isn’t displaying. Probably due to no loop. So how would I integrate that now? Like this?
PHP
1
<?php
//The Query
query_posts(‘posts_per_page=10);
//The Loop
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>