| 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 |
|