Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php $port = new WP_Query( array( 'post_type' => 'featured_work', 'posts_per_page' => 10 ) );
- while ( $port->have_posts() ) : $port->the_post(); ?>
- <!-- content here -->
- <li><a href="<?php the_permalink(); ?>">
- <?php the_title(); ?>
- </a></li>
- <!-- end content -->
- <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment