WordPress Post Type get_post_types info
<?php
$args = array( 'name' => 'blog',);
$post_types = get_post_types( $args, 'objects' );
echo "<pre>";
print_r($post_types);
echo "</pre>";
foreach ( $post_types as $post_type ) {
echo $post_type->name . "<br />";
}
?>























