Skip to content

Instantly share code, notes, and snippets.

@marisqaporter
Last active February 28, 2016 00:23
Show Gist options
  • Save marisqaporter/dc4509ccbc97e4f19581 to your computer and use it in GitHub Desktop.
Save marisqaporter/dc4509ccbc97e4f19581 to your computer and use it in GitHub Desktop.
Another simple php loop - shorter
<?php
$args = array(
'post_type' => 'faqa', // enter your custom post type
'orderby' => 'rand', // order
);
$loop = new WP_Query( $args );
if( $loop->have_posts() ):
echo '<div id="faq-container">';
while( $loop->have_posts() ): $loop->the_post(); global $post;
?>
<div class="my-faq">
<div class="faq">
<?php the_title( '<h3>', '</h3>' ); ?>
<?php if( get_field('image') ): ?>
<img src="<?php the_field('image'); ?>" />
<?php endif; ?>
<?php the_content(); ?>
</div>
</div>
<?php
endwhile;
echo '</div>';
endif;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment