Skip to content

Instantly share code, notes, and snippets.

@juque
Created July 19, 2010 14:55
Show Gist options
  • Select an option

  • Save juque/481507 to your computer and use it in GitHub Desktop.

Select an option

Save juque/481507 to your computer and use it in GitHub Desktop.
<?php
/**
* Buscará todos los post que tengan
* el custom fiel 'Destacado' en [vacio]
*
*/
$args = array(
'post_type' => 'post',
'meta_key' => 'Destacado',
'meta_compare' => '!=',
'meta_value' => ''
);
$sql = new WP_Query($args);
if ( $sql->have_posts() )
{
echo '<ul>';
while ( $sql->have_posts() )
{
$sql->the_post();
?>
<li><a href="<?php the_permalink() ?>"><?php the_title() ?></a> <?php the_ID()?></li>
<?php
}
echo '</ul>';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment