Skip to content

Instantly share code, notes, and snippets.

@torounit
Created December 24, 2014 07:00
Show Gist options
  • Save torounit/e5ecbb7387ae3b839635 to your computer and use it in GitHub Desktop.
Save torounit/e5ecbb7387ae3b839635 to your computer and use it in GitHub Desktop.
<?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