• Resolved jsj90

    (@jsj90)


    Hi,

    How do I get the Oceanwp Settings Metabox for 3 of my CPT?

    I tried this but manage to include one only. How do I add in the other 2?
    The slugs are
    1. uni-college
    2. programme
    3. landing-page

    /**
    * Add the OceanWP Settings metabox in your CPT
    */
    function oceanwp_metabox( $types ) {

    // Your custom post type
    $types[] = ‘your-post-type’;

    // Return
    return $types;

    }
    add_filter( ‘ocean_main_metaboxes_post_types’, ‘oceanwp_metabox’, 20 );

Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Multiple CPT for Oceanwp Metabox’ is closed to new replies.