postTypeLabel */ public function getPostTypesNames( $args = array(), $operator = 'and' ) { $postTypesObjs = get_post_types( $args, 'object', $operator ); /** @var WP_Post_Type[] $postTypesObjs */ $names = array(); foreach( $postTypesObjs as $postTypeObj ){ $names[ $postTypeObj->name ] = $postTypeObj->label; } return (array) $names; } }