@@ -15,9 +15,9 @@ discard block |
||
15 | 15 | * Get the bootstrap! If using the plugin from wordpress.org, REMOVE THIS! |
16 | 16 | */ |
17 | 17 | |
18 | -if ( file_exists( dirname( __FILE__ ) . '/cmb2/init.php' ) ) { |
|
18 | +if ( file_exists( dirname( __FILE__ ) . '/cmb2/init.php' ) ) { |
|
19 | 19 | require_once dirname( __FILE__ ) . '/cmb2/init.php'; |
20 | -} elseif ( file_exists( dirname( __FILE__ ) . '/CMB2/init.php' ) ) { |
|
20 | +} elseif ( file_exists( dirname( __FILE__ ) . '/CMB2/init.php' ) ) { |
|
21 | 21 | require_once dirname( __FILE__ ) . '/CMB2/init.php'; |
22 | 22 | } |
23 | 23 | |
@@ -28,9 +28,9 @@ discard block |
||
28 | 28 | * |
29 | 29 | * @return bool True if metabox should show |
30 | 30 | */ |
31 | -function yourprefix_show_if_front_page( $cmb ) { |
|
31 | +function yourprefix_show_if_front_page( $cmb ) { |
|
32 | 32 | // Don't show this metabox if it's not the front page template |
33 | - if ( $cmb->object_id !== get_option( 'page_on_front' ) ) { |
|
33 | + if ( $cmb->object_id !== get_option( 'page_on_front' ) ) { |
|
34 | 34 | return false; |
35 | 35 | } |
36 | 36 | return true; |
@@ -43,9 +43,9 @@ discard block |
||
43 | 43 | * |
44 | 44 | * @return bool True if metabox should show |
45 | 45 | */ |
46 | -function yourprefix_hide_if_no_cats( $field ) { |
|
46 | +function yourprefix_hide_if_no_cats( $field ) { |
|
47 | 47 | // Don't show this field if not in the cats category |
48 | - if ( ! has_tag( 'cats', $field->object_id ) ) { |
|
48 | + if ( ! has_tag( 'cats', $field->object_id ) ) { |
|
49 | 49 | return false; |
50 | 50 | } |
51 | 51 | return true; |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | * @param array $field_args Array of field arguments. |
58 | 58 | * @param CMB2_Field $field The field object |
59 | 59 | */ |
60 | -function yourprefix_render_row_cb( $field_args, $field ) { |
|
60 | +function yourprefix_render_row_cb( $field_args, $field ) { |
|
61 | 61 | $classes = $field->row_classes(); |
62 | 62 | $id = $field->args( 'id' ); |
63 | 63 | $label = $field->args( 'name' ); |
@@ -79,10 +79,10 @@ discard block |
||
79 | 79 | * @param array $field_args Array of field parameters |
80 | 80 | * @param CMB2_Field object $field Field object |
81 | 81 | */ |
82 | -function yourprefix_before_row_if_2( $field_args, $field ) { |
|
83 | - if ( 2 == $field->object_id ) { |
|
82 | +function yourprefix_before_row_if_2( $field_args, $field ) { |
|
83 | + if ( 2 == $field->object_id ) { |
|
84 | 84 | echo '<p>Testing <b>"before_row"</b> parameter (on $post_id 2)</p>'; |
85 | - } else { |
|
85 | + } else { |
|
86 | 86 | echo '<p>Testing <b>"before_row"</b> parameter (<b>NOT</b> on $post_id 2)</p>'; |
87 | 87 | } |
88 | 88 | } |
@@ -91,7 +91,7 @@ discard block |
||
91 | 91 | /** |
92 | 92 | * Hook in and add a demo metabox. Can only happen on the 'cmb2_admin_init' or 'cmb2_init' hook. |
93 | 93 | */ |
94 | -function yourprefix_register_demo_metabox() { |
|
94 | +function yourprefix_register_demo_metabox() { |
|
95 | 95 | $prefix = 'yourprefix_demo_'; |
96 | 96 | |
97 | 97 | /** |
@@ -395,7 +395,7 @@ discard block |
||
395 | 395 | /** |
396 | 396 | * Hook in and add a metabox that only appears on the 'About' page |
397 | 397 | */ |
398 | -function yourprefix_register_about_page_metabox() { |
|
398 | +function yourprefix_register_about_page_metabox() { |
|
399 | 399 | $prefix = 'yourprefix_about_'; |
400 | 400 | |
401 | 401 | /** |
@@ -424,7 +424,7 @@ discard block |
||
424 | 424 | /** |
425 | 425 | * Hook in and add a metabox to demonstrate repeatable grouped fields |
426 | 426 | */ |
427 | -function yourprefix_register_repeatable_group_field_metabox() { |
|
427 | +function yourprefix_register_repeatable_group_field_metabox() { |
|
428 | 428 | $prefix = 'yourprefix_group_'; |
429 | 429 | |
430 | 430 | /** |
@@ -488,7 +488,7 @@ discard block |
||
488 | 488 | /** |
489 | 489 | * Hook in and add a metabox to add fields to the user profile pages |
490 | 490 | */ |
491 | -function yourprefix_register_user_profile_metabox() { |
|
491 | +function yourprefix_register_user_profile_metabox() { |
|
492 | 492 | $prefix = 'yourprefix_user_'; |
493 | 493 | |
494 | 494 | /** |
@@ -558,7 +558,7 @@ discard block |
||
558 | 558 | /** |
559 | 559 | * Hook in and add a metabox to add fields to taxonomy terms |
560 | 560 | */ |
561 | -function yourprefix_register_taxonomy_metabox() { |
|
561 | +function yourprefix_register_taxonomy_metabox() { |
|
562 | 562 | $prefix = 'yourprefix_term_'; |
563 | 563 | |
564 | 564 | /** |
@@ -600,7 +600,7 @@ discard block |
||
600 | 600 | /** |
601 | 601 | * Hook in and register a metabox to handle a theme options page |
602 | 602 | */ |
603 | -function yourprefix_register_theme_options_metabox() { |
|
603 | +function yourprefix_register_theme_options_metabox() { |
|
604 | 604 | |
605 | 605 | $option_key = 'yourprefix_theme_options'; |
606 | 606 |