Skip to content

Instantly share code, notes, and snippets.

@sharpmachine
Last active August 29, 2015 14:01
Show Gist options
  • Save sharpmachine/a0a50ec6c2a37aabc3a8 to your computer and use it in GitHub Desktop.
Save sharpmachine/a0a50ec6c2a37aabc3a8 to your computer and use it in GitHub Desktop.
Query Custom Post Types
<?php $args = array( 'post_type' => 'lastest_updates', 'showposts' => 1); ?>
<?php $latest_updates = new WP_Query( $args ); ?>
<?php if ( $latest_updates->have_posts() ) : ?>
<?php while ( $latest_updates->have_posts() ) : $latest_updates->the_post(); ?>
<?php the_short_title(35); ?> <a href="<?php the_permalink(); ?>" class="read-more">Read More &#8594;</a>
<?php endwhile; ?>
<?php wp_reset_postdata(); ?>
<?php else: ?>
<?php _e( 'Sorry, no posts matched your criteria.' ); ?></p>
<?php endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment