PluginProbe
WP Ultimate Post Grid / 3.5.0
WP Ultimate Post Grid v3.5.0
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-layout.php

group-layout.php in WP Ultimate Post Grid 3.5.0, at templates/settings/group-layout.php

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