Skip to content

Latest commit

 

History

History
36 lines (24 loc) · 855 Bytes

ISSUE_TEMPLATE.md

File metadata and controls

36 lines (24 loc) · 855 Bytes

Expected Behavior:

Actual Behavior:

Steps to reproduce (I have confirmed I can reproduce this issue on the trunk branch):

CMB2 Field Registration Code:

add_action( 'cmb2_admin_init', 'yourprefix_register_demo_metabox' );
function yourprefix_register_demo_metabox() {

	$cmb = new_cmb2_box( array(
		// Box Config...
	) );

	$cmb->add_field( array(
		// Field Config...
	) );

	// Additional fields...
}