Advertisement
Viper007Bond

Untitled

Sep 19th, 2011
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. $post_check = new WP_Query( array(
  2.     'meta_query' => array(
  3.         array(
  4.             'key' => 'foobar',
  5.             'value' => 1,
  6.         ),
  7.     ),
  8. ) );
  9.  
  10. if ( $post_check->have_posts() ) {
  11.     echo 'A post exists with foobar=1';
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement