Skip to content

Instantly share code, notes, and snippets.

@igmoweb
Last active November 26, 2015 16:45
Show Gist options
  • Save igmoweb/fe71ae224473d459105a to your computer and use it in GitHub Desktop.
Save igmoweb/fe71ae224473d459105a to your computer and use it in GitHub Desktop.
clips
<?php
$args = array(
'post_type' => 'clips',
'ignore_sticky_posts' => true,
'posts_per_page' => 1,
'cat' => 6
);
$clips_query = new WP_Query( $args );
?>
<?php if ( $clips_query->have_posts() ): ?>
<?php while( $clips_query->have_posts() ) : $clips_query->the_post(); ?>
<h1 style="color:red"><?php the_title(); ?></h1>
<?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