2013-03-01 18:06:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$config = array(
|
|
|
|
|
'id' => 'slideshow-options',
|
|
|
|
|
'title' => __('Slideshow options', 'wpv'),
|
|
|
|
|
'pages' => array('slideshow',),
|
|
|
|
|
'context' => 'normal',
|
|
|
|
|
'priority' => 'high',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
require_once WPV_ADMIN_HELPERS . 'metaboxes_generator.php';
|
|
|
|
|
$options = include WPV_THEME_METABOXES . 'slideshow.php';
|
|
|
|
|
new metaboxes_generator($config, $options);
|