Created
October 3, 2014 02:47
-
-
Save abelorian/fca8202c27c1bbfbfa2c to your computer and use it in GitHub Desktop.
Custom Fields Wordpress loop
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
$args = array('post_type' => 'post_alcalde', 'posts_per_page' => 10, 'order' => 'ASC'); | |
$loop = new WP_Query($args); | |
$slide = ''; | |
while ($loop->have_posts()) : $loop->the_post(); | |
$imagenfull = get_field('imagenalcalde'); | |
$imagen = $imagenfull['url']; | |
?> | |
<div class="foto-alcalde"> | |
<img src="<?php echo $imagen ?>"> | |
</div> | |
<?php | |
endwhile; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment