Created
July 21, 2017 11:03
-
-
Save whatjackhasmade/15c63bb84638104718ffd84893a99411 to your computer and use it in GitHub Desktop.
Get Posts With A Specific Custom Field And Specific Value
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php query_posts('meta_key=review_type&meta_value=movie'); ?> | |
<?php if (have_posts()) : ?> | |
<?php while (have_posts()) : the_post(); ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment