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 / settings.php

settings.php in WP Ultimate Post Grid trunk, at templates/settings/settings.php

35 lines 1007 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Template for the plugin settings structure.
4 *
5 * @link https://bootstrapped.ventures
6 * @since 3.0.0
7 *
8 * @package WP_Ultimate_Post_Grid
9 * @subpackage WP_Ultimate_Post_Grid/templates/settings
10 */
11
12 require_once 'group-general.php';
13 require_once 'group-layout.php';
14 require_once 'group-animation.php';
15 require_once 'group-permissions.php';
16 require_once 'group-custom-code.php';
17 require_once 'group-debugging.php';
18
19 $settings_structure = array(
20 array(
21 'id' => 'documentation',
22 'name' => __( 'Documentation', 'wp-ultimate-post-grid' ),
23 'description' => __( 'All documentation can be found in our Knowledge Base.', 'wp-ultimate-post-grid' ),
24 'documentation' => 'https://help.bootstrapped.ventures/collection/7-wp-ultimate-post-grid',
25 'icon' => 'support',
26 ),
27 $group_general,
28 $group_layout,
29 $group_animation,
30 array( 'header' => __( 'Advanced', 'wp-ultimate-post-grid' ) ),
31 $group_permissions,
32 $group_custom_code,
33 $group_debugging,
34 );
35