Support

Account

Home Forums ACF PRO Can’t select non-public post type Reply To: Can’t select non-public post type

  • 
    add_filter('acf/get_post_types', 'include_private_post_types', 20, 2);
    include_private_post_types($post_types, $args) {
      if (!in_array('post', $post_types)) {
        $post_types[] = 'post';
      }
      return $post_types;
    }