Add Image Gallery Metabox at Custom Post Type
-
Hi is it possible to do something like this for the oceanwp-gallery-metabox ?
/** * 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 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘Add Image Gallery Metabox at Custom Post Type’ is closed to new replies.