PluginProbe
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts / 2.3.1
Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts v2.3.1
2.7.7 2.7.6 2.7.5 2.7.4 trunk 1.3 2.0.4 2.0.6 2.1.91 2.2.4 2.2.7 2.2.9 2.3.1 2.3.10 2.4.10 2.4.2 2.4.4 2.4.5 2.4.6 2.4.7 2.4.8 2.4.9 2.6.0 2.6.1 2.7.0 All 28 releases
insert-php / libs / factory / shortcodes / boot.php

boot.php in Woody Code Snippets – Insert PHP, CSS, JS, and Header/Footer Scripts 2.3.1, at libs/factory/shortcodes/boot.php

26 lines 599 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Factory Shortcodes
4 *
5 * @author Alex Kovalev <alex.kovalevv@gmail.com>
6 * @since 1.0.0
7 * @package factory-shortcodes
8 * @copyright (c) 2018, Webcraftic Ltd
9 *
10 */
11
12 if ( defined( 'FACTORY_SHORTCODES_329_LOADED' ) ) {
13 return;
14 }
15
16 define( 'FACTORY_SHORTCODES_329_VERSION', '3.2.9' );
17
18 define( 'FACTORY_SHORTCODES_329_LOADED', true );
19
20 define( 'FACTORY_SHORTCODES_329_DIR', dirname( __FILE__ ) );
21
22 #comp merge
23 require( FACTORY_SHORTCODES_329_DIR . '/shortcodes.php' );
24 require( FACTORY_SHORTCODES_329_DIR . '/shortcode.class.php' );
25 #endcomp
26