2013-03-01 18:06:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$config = array(
|
|
|
|
|
'id' => 'wpv_templates',
|
|
|
|
|
'title' => __('Vamtam templates', 'wpv'),
|
|
|
|
|
'pages' => array('page', 'post', 'portfolio'),
|
|
|
|
|
'context' => 'side',
|
|
|
|
|
'priority' => 'low',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
require_once WPV_ADMIN_HELPERS . 'metaboxes_generator.php';
|
|
|
|
|
$options = include WPV_ADMIN_METABOXES . 'template_options.php';
|
|
|
|
|
new metaboxes_generator($config, $options);
|