2013-03-01 18:06:10 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
require_once( '../../../../../../wp-load.php' );
|
|
|
|
|
|
|
|
|
|
$config = array(
|
|
|
|
|
'title' => __('Shortcodes', 'wpv'),
|
|
|
|
|
'id' => 'shortcode',
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
require_once WPV_ADMIN_HELPERS . 'shortcodes_generator.php';
|
|
|
|
|
$shortcodes = include(WPV_SHORTCODES_GENERATOR . $_GET['slug'] .'.php');
|
|
|
|
|
$generator = new shortcodes_generator($config, $shortcodes);
|
|
|
|
|
|
2013-02-27 15:39:05 +00:00
|
|
|
$generator->render();
|