askwpcoach

Query WordPress Custom Post Type

Mar 11th, 2012
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.31 KB | None | 0 0
  1. <?php $port = new WP_Query( array( 'post_type' => 'featured_work', 'posts_per_page' => 10 ) );
  2. while ( $port->have_posts() ) : $port->the_post(); ?>
  3. <!-- content here -->
  4.       <li><a href="<?php the_permalink(); ?>">
  5.         <?php the_title(); ?>
  6.         </a></li>
  7.       <!-- end content -->
  8.   <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment