Skip to content

Instantly share code, notes, and snippets.

@ovizii
Created August 14, 2013 06:24
Show Gist options
  • Select an option

  • Save ovizii/6228485 to your computer and use it in GitHub Desktop.

Select an option

Save ovizii/6228485 to your computer and use it in GitHub Desktop.
Create your own loop
<?php $loop = new WP_Query( array( 'post_type' => 'movies','actors' => 'peter-smith', 'actress' => 'jane-smith', 'posts_per_page' => 10 ) ); ?>
<?php while ( $loop->have_posts() ) : $loop->the_post(); ?>
<?php the_title( '<h2 class="entry-title"><a href="' . get_permalink() . '" title="' . the_title_attribute( 'echo=0' ) . '" rel="bookmark">', '</a></h2>' ); ?>
<h5>image</h5><a href="<?php the_permalink(); ?>"><img src="<?php the_field('image'); ?>" alt="text-here" /></a>
<?php the_excerpt(); ?>
<?php endwhile; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment