git-svn-id: https://192.168.0.254/svn/Proyectos.EstudioJuridicoAlmagro_Web/trunk@3 c22fe52d-42d7-ba4f-95f7-33effcf65713
15 lines
359 B
PHP
15 lines
359 B
PHP
<?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);
|