PluginProbe
WP Ultimate Post Grid / 2.2
WP Ultimate Post Grid v2.2
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / helpers / vafpress_shortcode.php

vafpress_shortcode.php in WP Ultimate Post Grid 2.2, at helpers/vafpress_shortcode.php

25 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class WPUPG_Vafpress_Shortcode {
4
5 public function __construct()
6 {
7 add_action( 'after_setup_theme', array( $this, 'vafpress_shortcode_init' ), 11 );
8 }
9
10 public function vafpress_shortcode_init()
11 {
12 require_once( WPUltimatePostGrid::get()->coreDir . '/helpers/vafpress/vafpress_shortcode_whitelist.php');
13 require_once( WPUltimatePostGrid::get()->coreDir . '/helpers/vafpress/vafpress_shortcode_options.php');
14
15 new VP_ShortcodeGenerator(array(
16 'name' => 'wpupg_shortcode_generator',
17 'template' => $shortcode_generator,
18 'modal_title' => 'WP Ultimate Post Grid ' . __( 'Shortcodes', 'wp-ultimate-post-grid' ),
19 'button_title' => 'WP Ultimate Post Grid',
20 'types' => WPUltimatePostGrid::option( 'shortcode_editor_post_types', array( 'post', 'page' ) ),
21 'main_image' => WPUltimatePostGrid::get()->coreUrl . '/img/icon_20.png',
22 'sprite_image' => WPUltimatePostGrid::get()->coreUrl . '/img/icon_sprite.png',
23 ));
24 }
25 }