Skip to content

Instantly share code, notes, and snippets.

@abelorian
Created October 3, 2014 02:47
Show Gist options
  • Save abelorian/fca8202c27c1bbfbfa2c to your computer and use it in GitHub Desktop.
Save abelorian/fca8202c27c1bbfbfa2c to your computer and use it in GitHub Desktop.
Custom Fields Wordpress loop
$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