Fer un code snipped i afegir això
/** * 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 );