-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetaboxes.php
286 lines (200 loc) · 8.47 KB
/
metaboxes.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
<?php
add_action( 'cmb2_admin_init', 'cmb2_sample_metaboxes' );
/**
* Define the metabox and field configurations.
*/
function cmb2_sample_metaboxes() {
// Start with an underscore to hide fields from custom fields list
$prefix = 'fitmeta_';
/**
* Initiate the metabox
*/
$cmb = new_cmb2_box( array(
'id' => 'test_metabox',
'title' => __( 'Main Product Settings', 'cmb2' ),
'object_types' => array( 'main_product', ), // Post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true, // Show field names on the left
// 'cmb_styles' => false, // false to disable the CMB stylesheet
// 'closed' => true, // Keep the metabox closed by default
) );
// Regular text field
$cmb->add_field( array(
'name' => __( 'Product Number', 'cmb2' ),
'desc' => 'Select an option',
'id' => 'pro_num',
'type' => 'select',
'show_option_none' => true,
'default' => 'custom',
'options' => array(
'one' => __( 'Product One', 'cmb2' ),
'two' => __( 'Product Two', 'cmb2' ),
'three' => __( 'Product Three', 'cmb2' ),
'four' => __( 'Product Four', 'cmb2' )
),
) );
$cmb->add_field( array(
'name' => __( 'Key Characterristics:01', 'cmb2' ),
'id' => $prefix . 'char1',
'type' => 'text',
'show_on_cb' => 'cmb2_hide_if_no_cats', // function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
) );
// Regular text field
$cmb->add_field( array(
'name' => __( 'Key Characterristics:02', 'cmb2' ),
'id' => $prefix . 'char2',
'type' => 'text',
'show_on_cb' => 'cmb2_hide_if_no_cats', // function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
) );
// Regular text field
$cmb->add_field( array(
'name' => __( 'Key Characterristics:03', 'cmb2' ),
'id' => $prefix . 'char3',
'type' => 'text',
'show_on_cb' => 'cmb2_hide_if_no_cats', // function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
) );
// Regular text field
$cmb->add_field( array(
'name' => __( 'Highlighted Text', 'cmb2' ),
'id' => $prefix . 'highlight',
'type' => 'textarea',
'show_on_cb' => 'cmb2_hide_if_no_cats', // function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
'desc' => 'Don\'t Add More Than 30 Words'
) );
// Regular text field
$cmb->add_field( array(
'name' => __( 'Embed Product Video', 'cmb2' ),
'id' => $prefix . 'video',
'default' => 'https://www.youtube.com/watch?v=V32eP6G89ng',
'type' => 'oembed',
'show_on_cb' => 'cmb2_hide_if_no_cats', // function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
) );
}
add_action( 'cmb2_admin_init', 'banner_box' );
/**
* Define the metabox and field configurations.
*/
function banner_box() {
// Start with an underscore to hide fields from custom fields list
$prefix = 'fitmeta_';
/**
* Initiate the metabox
*/
$banner = new_cmb2_box( array(
'id' => 'banner',
'title' => __( 'Test Metabox', 'cmb2' ),
'object_types' => array( 'banner', ), // Post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true,
// Show field names on the left
// 'cmb_styles' => false, // false to disable the CMB stylesheet
// 'closed' => true, // Keep the metabox closed by default
) );
// Regular text field
$banner->add_field( array(
'name' => __( 'Banner Image', 'cmb2' ),
'default' => get_template_directory_uri().'/images/bg2.jpg',
'desc' => 'This is a demo image',
'id' => $prefix . 'image',
'type' => 'file',
'show_on_cb' => 'cmb2_hide_if_no_cats', // function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
) );
$banner->add_field( array(
'name' => __( 'Upper Title', 'cmb2' ),
'id' => $prefix . 'title1',
'type' => 'text',
'show_on_cb' => 'cmb2_hide_if_no_cats',
'default' => 'This is a sample Value'
// function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
) );
$banner->add_field( array(
'name' => __( 'Middle Title', 'cmb2' ),
'id' => $prefix . 'title2',
'type' => 'text',
'show_on_cb' => 'cmb2_hide_if_no_cats',
'default' => 'This is a sample Value'
// function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
) );
$banner->add_field( array(
'name' => __( 'Lower Title', 'cmb2' ),
'id' => $prefix . 'title3',
'type' => 'text',
'show_on_cb' => 'cmb2_hide_if_no_cats',
'default' => 'This is a sample Value'
// function should return a bool value
// 'sanitization_cb' => 'my_custom_sanitization', // custom sanitization callback parameter
// 'escape_cb' => 'my_custom_escaping', // custom escaping callback parameter
// 'on_front' => false, // Optionally designate a field to wp-admin only
// 'repeatable' => true,
) );
}
add_action( 'cmb2_admin_init', 'more_product' );
/**
* Define the metabox and field configurations.
*/
function more_product() {
// Start with an underscore to hide fields from custom fields list
$prefix = 'fitmeta_';
/**
* Initiate the metabox
*/
$more = new_cmb2_box( array(
'id' => 'more_product',
'title' => __( 'Column Selection', 'cmb2' ),
'object_types' => array( 'other_product', ), // Post type
'context' => 'normal',
'priority' => 'high',
'show_names' => true,
// Show field names on the left
// 'cmb_styles' => false, // false to disable the CMB stylesheet
// 'closed' => true, // Keep the metabox closed by default
) );
// Regular text field
$more->add_field( array(
'name' => __( 'Select Column', 'cmb2' ),
'desc' => 'Select an option',
'id' => 'pro_row',
'type' => 'select',
'default' => 'custom',
'options' => array(
'one' => __( 'Column One', 'cmb2' ),
'two' => __( 'Column Two', 'cmb2' ),
'three' => __( 'Column Three', 'cmb2' )
),
) );
}
?>