Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuriitaran/10af354fb347aae3816f9532649f684a to your computer and use it in GitHub Desktop.
Save yuriitaran/10af354fb347aae3816f9532649f684a to your computer and use it in GitHub Desktop.
WP_Query to display content from custom post type object
<?php $the_query = new WP_Query( array( 'post_type' => 'slider', 'order' => 'ASC' ) ); ?>
<?php if ( $the_query->have_posts() ) : ?>
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<img src="<?php the_field('slide_image'); ?>" alt="<?php the_field('slide_title'); ?>" />
<?php the_field('slide_title'); ?>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment