Last active
November 26, 2015 16:45
-
-
Save igmoweb/fe71ae224473d459105a to your computer and use it in GitHub Desktop.
clips
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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