| 1 |
<?php |
| 2 |
|
| 3 |
$group_custom_code = array( |
| 4 |
'id' => 'custom_code', |
| 5 |
'name' => __( 'Custom Code', 'wp-ultimate-post-grid' ), |
| 6 |
'icon' => 'code', |
| 7 |
'settings' => array( |
| 8 |
array( |
| 9 |
'id' => 'public_css', |
| 10 |
'name' => __( 'Public CSS', 'wp-ultimate-post-grid' ), |
| 11 |
'description' => __( 'This custom styling will be output on your website.', 'wp-ultimate-post-grid' ), |
| 12 |
'type' => 'code', |
| 13 |
'code' => 'css', |
| 14 |
'default' => '', |
| 15 |
), |
| 16 |
), |
| 17 |
); |
| 18 |
|