-
-
Save HeadStudios/a03bcf698a42c91b2a0338d797108ecb to your computer and use it in GitHub Desktop.
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_filter( 'rwmb_meta_boxes', 'your_prefix_register_meta_boxes' ); | |
function your_prefix_register_meta_boxes( $meta_boxes ) { | |
$prefix = 'prefix-'; | |
$meta_boxes[] = [ | |
'title' => esc_html__( 'Custom Fields', 'online-generator' ), | |
'id' => 'custom-fields-7', | |
'post_types' => ['project'], | |
'context' => 'normal', | |
'priority' => 'high', | |
'fields' => [ | |
[ | |
'type' => 'text', | |
'id' => $prefix . 'project_budget', | |
'name' => esc_html__( 'Project Budget', 'online-generator' ), | |
], | |
[ | |
'type' => 'text', | |
'id' => $prefix . 'medical_installation_budget', | |
'name' => esc_html__( 'Medical Gas Installation Budget', 'online-generator' ), | |
], | |
], | |
]; | |
return $meta_boxes; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment