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

WP Ultimate Post Grid, version 3.3.0. 32 lines.

- Page: https://pluginprobe.com/plugins/wp-ultimate-post-grid/3.3.0/code/templates/settings/group-general.php
- Raw: https://pluginprobe.com/plugins/wp-ultimate-post-grid/3.3.0/raw/templates/settings/group-general.php
- Modified: 2020-06-11T15:09: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-general.php#L10-L20`.

```php
<?php

$group_general = array(
	'id' => 'general',
	'name' => __( 'General', 'wp-ultimate-post-grid' ),
	'icon' => 'cog',
	'subGroups' => array(
		array(
			'name' => __( 'Customize Link & Image', 'wp-ultimate-post-grid' ),
			'description' => __( 'You can set a custom link or image for every item in the grid by editing the individual post.', 'wp-ultimate-post-grid' ),
			'settings' => array(
				array(
					'id' => 'meta_box_post_types',
					'name' => __( 'Post Types', 'wp-ultimate-post-grid' ),
					'description' => __( 'Which post types do you want to enable this option for?', 'wp-ultimate-post-grid' ),
					'type' => 'dropdownMultiselect',
					'optionsCallback' => function() { return get_post_types( '', 'names' ); },
					'default' => array( 'post', 'page' ),
				),
				array(
					'id' => 'meta_box_taxonomies',
					'name' => __( 'Taxonomies', 'wp-ultimate-post-grid' ),
					'description' => __( 'Which taxonomies do you want to enable this option for?', 'wp-ultimate-post-grid' ),
					'type' => 'dropdownMultiselect',
					'optionsCallback' => function() { return get_taxonomies( '', 'names' ); },
					'default' => array( 'category', 'post_tag' ),
				),
			),
		),
	),
);

```
