Custom Post Type Support
-
Hi
Nice plugin but it doesn’t supports Custom Post Types. I think this should be pretty easy using get_post_types
Output a list all registered post types
<?php
$post_types=get_post_types(”,’names’);
foreach ($post_types as $post_type ) {
echo ‘<p>’. $post_type. ‘</p>’;
}
?>
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
The topic ‘Custom Post Type Support’ is closed to new replies.