15 lines
592 B
PHP
15 lines
592 B
PHP
|
<?php
|
||
|
return array(
|
||
|
'title' => 'Thinkai Setting',
|
||
|
'id' => 'thinkai_meta',
|
||
|
'icon' => 'el el-cogs',
|
||
|
'position' => 'normal',
|
||
|
'priority' => 'core',
|
||
|
'post_types' => array( 'page', 'post', 'team', 'tribe_events', 'department', 'service', 'product', 'project', 'tf_tours' ),
|
||
|
'sections' => array(
|
||
|
require_once THINKAIPLUGIN_PLUGIN_PATH . '/metabox/header.php',
|
||
|
require_once THINKAIPLUGIN_PLUGIN_PATH . '/metabox/banner.php',
|
||
|
require_once THINKAIPLUGIN_PLUGIN_PATH . '/metabox/sidebar.php',
|
||
|
require_once THINKAIPLUGIN_PLUGIN_PATH . '/metabox/footer.php',
|
||
|
),
|
||
|
);
|