Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi Austin, did you get a solution for this?

    Thread Starter Austin Ginder

    (@austinginder)

    I did not.

    Intuitive Custom Post Order only Works with custom post type that are public

    Il you want to add au Custom Porst Type that is not public, like your ‘slide’ CPT you can filter the option of the plugin this way :

    function prefix_add_cpt_to_hicpo_options( $option ){
    
        $option['objects'][] = 'slide';
    
        return $option;
    }
    add_filter( 'option_hicpo_options', 'prefix_add_cpt_to_hicpo_options');
    Thread Starter Austin Ginder

    (@austinginder)

    That works, thanks.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Missing custom post type’ is closed to new replies.