I have a custom post type called Testimonial that includes custom fields "name", "title" and "bank". I would like to display each of these items on a page. Here's what I have so far:
<?php
while ( $loop->have_posts() ) : $loop->the_post();
the_title();
echo '<div class="entry-content">';
the_content();
echo '</div>';
endwhile;
?>
This gives me something close to what I want but I don't know how to get at the actual fields individually. How do I do that?
the_tags()andthe_category()? – m0r7if3r Jan 15 '12 at 20:52