PluginProbe
WP Ultimate Post Grid / trunk
WP Ultimate Post Grid vtrunk
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / templates / settings / group-custom-code.php

group-custom-code.php in WP Ultimate Post Grid trunk, at templates/settings/group-custom-code.php

18 lines 428 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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