星期四 , 23 1 月 2025

怎样获取所有自定义的文章类型的名字(排除默认的文章类型)

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