function get_custom_post_types() {
$args = array(
'public' => true,
'_builtin' => false
);
$custom_post_types = get_post_types($args, 'names');
return $custom_post_types;
}
function get_custom_post_types() {
$args = array(
'public' => true,
'_builtin' => false
);
$custom_post_types = get_post_types($args, 'names');
return $custom_post_types;
}