• Source
    1. <?php $posts = get_posts('post_type=custom-post-name&posts_per_page=5'); ?>
    2. <?php if (!empty($posts)): ?>
    3. <ul class="className">
    4. <?php foreach ($posts as $post):setup_postdata($post); ?>
    5. <li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
    6. <?php endforeach; ?>
    7. <?php wp_reset_postdata(); ?>
    8. </ul>
    9. <?php endif; ?>