@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | $cmb_demo = new_cmb2_box( array( |
| 116 | 116 | 'id' => $prefix . 'metabox', |
| 117 | 117 | 'title' => esc_html__( 'Test Metabox', 'cmb2' ), |
| 118 | - 'object_types' => array( 'page', ), // Post type |
|
| 118 | + 'object_types' => array( 'page',), // Post type |
|
| 119 | 119 | // 'show_on_cb' => 'yourprefix_show_if_front_page', // function should return a bool value |
| 120 | 120 | // 'context' => 'normal', |
| 121 | 121 | // 'priority' => 'high', |
@@ -385,7 +385,7 @@ discard block |
||
| 385 | 385 | 'desc' => esc_html__( 'field description (optional)', 'cmb2' ), |
| 386 | 386 | 'id' => $prefix . 'wysiwyg', |
| 387 | 387 | 'type' => 'wysiwyg', |
| 388 | - 'options' => array( 'textarea_rows' => 5, ), |
|
| 388 | + 'options' => array( 'textarea_rows' => 5,), |
|
| 389 | 389 | ) ); |
| 390 | 390 | |
| 391 | 391 | $cmb_demo->add_field( array( |
@@ -441,11 +441,11 @@ discard block |
||
| 441 | 441 | $cmb_about_page = new_cmb2_box( array( |
| 442 | 442 | 'id' => $prefix . 'metabox', |
| 443 | 443 | 'title' => esc_html__( 'About Page Metabox', 'cmb2' ), |
| 444 | - 'object_types' => array( 'page', ), // Post type |
|
| 444 | + 'object_types' => array( 'page',), // Post type |
|
| 445 | 445 | 'context' => 'normal', |
| 446 | 446 | 'priority' => 'high', |
| 447 | 447 | 'show_names' => true, // Show field names on the left |
| 448 | - 'show_on' => array( 'id' => array( 2, ) ), // Specific post IDs to display this metabox |
|
| 448 | + 'show_on' => array( 'id' => array( 2,) ), // Specific post IDs to display this metabox |
|
| 449 | 449 | ) ); |
| 450 | 450 | |
| 451 | 451 | $cmb_about_page->add_field( array( |
@@ -470,7 +470,7 @@ discard block |
||
| 470 | 470 | $cmb_group = new_cmb2_box( array( |
| 471 | 471 | 'id' => $prefix . 'metabox', |
| 472 | 472 | 'title' => esc_html__( 'Repeating Field Group', 'cmb2' ), |
| 473 | - 'object_types' => array( 'page', ), |
|
| 473 | + 'object_types' => array( 'page',), |
|
| 474 | 474 | ) ); |
| 475 | 475 | |
| 476 | 476 | // $group_field_id is the field id string, so in this case: $prefix . 'demo' |
@@ -699,7 +699,7 @@ discard block |
||
| 699 | 699 | $cmb_rest = new_cmb2_box( array( |
| 700 | 700 | 'id' => $prefix . 'metabox', |
| 701 | 701 | 'title' => esc_html__( 'REST Test Box', 'cmb2' ), |
| 702 | - 'object_types' => array( 'page', ), // Post type |
|
| 702 | + 'object_types' => array( 'page',), // Post type |
|
| 703 | 703 | 'show_in_rest' => WP_REST_Server::ALLMETHODS, // WP_REST_Server::READABLE|WP_REST_Server::EDITABLE, // Determines which HTTP methods the box is visible in. |
| 704 | 704 | // Optional callback to limit box visibility. |
| 705 | 705 | // See: https://github.com/WebDevStudios/CMB2/wiki/REST-API#permissions |