Support

Account

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

  • Thanks. That worked for me. (added missing ‘function’)

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