Created
December 24, 2014 07:00
-
-
Save torounit/e5ecbb7387ae3b839635 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$post_types = get_post_types( array('_builtin'=>false, 'publicly_queryable'=>true, 'show_ui' => true) ); | |
foreach ($post_types as $key => $post_type) { | |
$posts = get_posts( array("post_type" => $post_type, "posts_per_page" => 1) ); | |
foreach ( $posts as $post ) : setup_postdata( $post ); ?> | |
<li> | |
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> | |
</li> | |
<?php endforeach; | |
wp_reset_postdata(); | |
};?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment