PluginProbe
PixTypes / 2.0.2
PixTypes v2.0.2
2.0.2 trunk 1.3.5 1.4.10 1.4.11 1.4.12 1.4.13 1.4.14 1.4.15 1.4.16 1.4.2 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.9 2.0.0 2.0.1
pixtypes / plugin-defaults.php

plugin-defaults.php in PixTypes 2.0.2, at plugin-defaults.php

48 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) exit;
3
4 return array
5 (
6
7 # Hidden fields
8
9 'settings_saved_once' => '0',
10
11 # "Post Types" fields
12 'enable_portfolio' => true,
13
14 'portfolio_single_item_label' => 'Project',
15 'portfolio_multiple_items_label' => 'Projects',
16
17 'portfolio_change_single_item_slug' => true,
18 'portfolio_new_single_item_slug' => 'portfolio',
19
20 'portfolio_change_archive_slug' => false,
21 'portfolio_new_archive_slug' => '',
22
23 // 'portfolio_use_tags' => false,
24
25 'enable_gallery' => true,
26 'gallery_change_single_item_slug' => true,
27 'gallery_new_single_item_slug' => 'gallery',
28
29 'gallery_change_archive_slug' => true,
30 'gallery_new_archive_slug' => 'galleries',
31 # "Taxonomies" fields
32 'enable_portfolio_categories' => true,
33 'portfolio_categories_change_archive_slug' => true,
34 'portfolio_categories_new_archive_slug' => 'portfolio_category',
35 'enable_gallery_categories' => true,
36 'gallery_categories_change_archive_slug' => true,
37 'gallery_categories_new_archive_slug' => 'gallery_category',
38
39 'enable_portfolio-type' => true,
40 'portfolio-type_change_archive_slug' => true,
41 'portfolio-type_new_archive_slug' => 'project-type',
42
43 'enable_portfolio-tag' => true,
44 'portfolio-tag_change_archive_slug' => true,
45 'portfolio-tag_new_archive_slug' => 'project-tag',
46
47 ); # config
48