WPLib_Posts::get_post_types_supporting PHP Method

get_post_types_supporting() static public method

Get a list of post types that support a specific named feature.
static public get_post_types_supporting ( string $feature ) : array
$feature string
return array
    static function get_post_types_supporting($feature)
    {
        global $_wp_post_type_features;
        $post_types = array_keys(wp_filter_object_list($_wp_post_type_features, array($feature => true)));
        return $post_types;
    }