| 1 |
<?php |
| 2 |
|
| 3 |
$group_layout = array( |
| 4 |
'id' => 'layout', |
| 5 |
'name' => __( 'Layout', 'wp-ultimate-post-grid' ), |
| 6 |
'icon' => 'brush', |
| 7 |
'subGroups' => array( |
| 8 |
array( |
| 9 |
'name' => __( 'Breakpoints', 'wp-ultimate-post-grid' ), |
| 10 |
'settings' => array( |
| 11 |
array( |
| 12 |
'id' => 'breakpoint_tablet', |
| 13 |
'name' => __( 'Tablet Breakpoint', 'wp-ultimate-post-grid' ), |
| 14 |
'description' => __( 'If the screen size is smaller than this, the tablet (or mobile) layout will be shown.', 'wp-ultimate-post-grid' ), |
| 15 |
'type' => 'number', |
| 16 |
'default' => 800, |
| 17 |
), |
| 18 |
array( |
| 19 |
'id' => 'breakpoint_mobile', |
| 20 |
'name' => __( 'Mobile Breakpoint', 'wp-ultimate-post-grid' ), |
| 21 |
'description' => __( 'If the screen size is smaller than this, the mobile layout will be shown.', 'wp-ultimate-post-grid' ), |
| 22 |
'type' => 'number', |
| 23 |
'default' => 400, |
| 24 |
), |
| 25 |
), |
| 26 |
), |
| 27 |
), |
| 28 |
); |
| 29 |
|