This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'cmb2_init', 'yourprefix_register_about_page_metabox' ); | |
function yourprefix_register_about_page_metabox() { | |
// Start with an underscore to hide fields from custom fields list | |
$prefix = '_yourprefix_about_'; | |
/** | |
* Metabox to be displayed on a single page ID | |
*/ | |
$cmb_about_page = new_cmb2_box( array( |