Skip to content

Instantly share code, notes, and snippets.

@hsquareweb
Created October 17, 2013 21:38
Show Gist options
  • Select an option

  • Save hsquareweb/7032648 to your computer and use it in GitHub Desktop.

Select an option

Save hsquareweb/7032648 to your computer and use it in GitHub Desktop.
WP: Query by Post Type (Ex: Branding Area)
<div id="branding">
<?php $loop = new WP_Query(array('post_type' => 'brandingArea', 'orderby'=> 'ASC')); while ( $loop->have_posts() ) : $loop->the_post(); ?>
<div>
<img src="<?php the_field('image'); ?>" alt="" class="slide-background"/>
<div class="slide-content">
<h1><?php the_title(); ?>:</h1>
<p><?php the_field('text'); ?> <a href="<?php the_field('link'); ?>" class="more" title="<?php the_title(); ?>">Learn More</a></p>
</div>
</div>
<?php endwhile; ?>
</div><!-- end branding -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment