| 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 |
|