Return to Snippet

Revision: 58127
at June 27, 2012 07:52 by i-am-andy


Initial Code
<?php query_posts( array( 'post_type' => 'Beers', 'showposts' => 10 ) );
                    	if ( have_posts() ) : while ( have_posts() ) : the_post();
                    	?>
<li><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></li>

<?php endwhile; endif; wp_reset_query(); ?>

Initial URL


Initial Description
Useful for adding Custom Post types to navigation this will list all custom post type posts

Initial Title
List Custom Post Type anywhere

Initial Tags
post, wordpress

Initial Language
PHP