-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-sample.php
29 lines (27 loc) · 1.12 KB
/
config-sample.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?php
/*
|| --------------------------------------------------------------------------------------------
|| Metabox Config
|| --------------------------------------------------------------------------------------------
||
|| @package Dilaz Metabox
|| @subpackage Config
|| @since Dilaz Metabox 2.5.1
|| @author Rodgath, https://github.com/Rodgath
|| @copyright Copyright (C) 2017, Rodgath LTD
|| @link https://github.com/Rodgath/Dilaz-Metabox
|| @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
||
|| NOTE: Rename this file from "config-sample.php" to "config.php". If you
|| don't rename it, all your config and settings will be overwritten
|| when updating Dilaz Metabox Options.
||
*/
defined('ABSPATH') || exit;
# Metabox parameters
$parameters = array(
'prefix' => 'dilaz_mb_prefix', # must be unique. Used to save settings.
'use_type' => 'theme', # 'theme' if used within a theme OR 'plugin' if used within a plugin
'default_options' => true, # whether to load default options
'custom_options' => true, # whether to load custom options
);