# wp-ultimate-post-grid/3.3.0/templates/settings/group-layout.php

WP Ultimate Post Grid, version 3.3.0. 29 lines.

- Page: https://pluginprobe.com/plugins/wp-ultimate-post-grid/3.3.0/code/templates/settings/group-layout.php
- Raw: https://pluginprobe.com/plugins/wp-ultimate-post-grid/3.3.0/raw/templates/settings/group-layout.php
- Modified: 2020-01-24T07:47:12+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wp-ultimate-post-grid/3.3.0/code/templates/settings/group-layout.php#L10-L20`.

```php
<?php

$group_layout = array(
	'id' => 'layout',
	'name' => __( 'Layout', 'wp-ultimate-post-grid' ),
	'icon' => 'brush',
	'subGroups' => array(
		array(
			'name' => __( 'Breakpoints', 'wp-ultimate-post-grid' ),
			'settings' => array(
				array(
					'id' => 'breakpoint_tablet',
					'name' => __( 'Tablet Breakpoint', 'wp-ultimate-post-grid' ),
					'description' => __( 'If the screen size is smaller than this, the tablet (or mobile) layout will be shown.', 'wp-ultimate-post-grid' ),
					'type' => 'number',
					'default' => 800,
				),
				array(
					'id' => 'breakpoint_mobile',
					'name' => __( 'Mobile Breakpoint', 'wp-ultimate-post-grid' ),
					'description' => __( 'If the screen size is smaller than this, the mobile layout will be shown.', 'wp-ultimate-post-grid' ),
					'type' => 'number',
					'default' => 400,
				),
			),
		),
	),
);

```
