Afegir metabox Ocean a custom post type

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 );
  • Autor de l'entrada:
  • Categoria de l'entrada:Wordpress