

To achieve this recipe, simply find the loop and add the query_posts() function just above, as in the example below:
<?php query_posts('meta_key=review_type&meta_value=movie'); ?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
You'll get the list of post having review_type as a custom field key and movie as a value. Just change theses values to fit your needs.
Leave a Comment