'page_custom_metaboxes', 'title' => __( 'Informations', 'denta_lite' ), 'pages' => array( 'page' ), 'show_on' => array( 'key' => 'page-template', 'value' => 'page-custom.php' ), 'context' => 'normal', 'priority' => 'high', 'show_names' => true, 'fields' => array( array( 'name' => __( 'Title:', 'denta_lite' ), 'id' => $prefix . 'informations_title', 'type' => 'text_medium', ), array( 'name' => __( 'E-mail:', 'denta_lite' ), 'id' => $prefix . 'informations_email', 'type' => 'text_medium', ), array( 'name' => __( 'Telephone:', 'denta_lite' ), 'id' => $prefix . 'informations_telephone', 'type' => 'text_medium', ), array( 'name' => __( 'URL:', 'denta_lite' ), 'id' => $prefix . 'informations_url', 'type' => 'text_medium', ), ), ); return $meta_boxes; } add_action( 'init', 'cmb_initialize_cmb_meta_boxes', 9999 ); /** * Initialize the metabox class. */ function cmb_initialize_cmb_meta_boxes() { if ( ! class_exists( 'cmb_Meta_Box' ) ) require_once 'init.php'; }