Created
July 19, 2010 14:55
-
-
Save juque/481507 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
| /** | |
| * 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