| 1 |
<?php |
| 2 |
/** |
| 3 |
* Plugin Name: WP Responsive Menu |
| 4 |
* Description: WP Responsive Menu is mobile menu plugin that lets you add a highly customizable responsive menu to any WordPress site in no time. |
| 5 |
* Plugin URI: http://magnigenie.com/wp-responsive-menu-mobile-menu-plugin-wordpress?utm_source=wp-plugins&utm_campaign=plugin-uri&utm_medium=wp-dash |
| 6 |
* Author: MagniGenie |
| 7 |
* Version: 3.1.8 |
| 8 |
* Author URI: http://magnigenie.com/?utm_source=wp-plugins&utm_campaign=author-uri&utm_medium=wp-dash |
| 9 |
* Text Domain: wprmenu |
| 10 |
* Domain Path: /languages/ |
| 11 |
* |
| 12 |
* @package wprmenu |
| 13 |
*/ |
| 14 |
|
| 15 |
defined( 'ABSPATH' ) || exit; |
| 16 |
|
| 17 |
// Plugin Folder URL. |
| 18 |
if ( ! defined( 'WPRMENU_FILE' ) ) { |
| 19 |
define( 'WPRMENU_FILE', __FILE__ ); |
| 20 |
} |
| 21 |
|
| 22 |
if ( ! defined( 'WPRMENU_BASE' ) ) { |
| 23 |
define( 'WPRMENU_BASE', plugin_basename( __FILE__ ) ); |
| 24 |
} |
| 25 |
|
| 26 |
|
| 27 |
// Include WPR Menu Loader class. |
| 28 |
if ( ! class_exists( 'WPR_Menu_Loader', false ) ) { |
| 29 |
include_once dirname( __FILE__ ) . '/inc/wprmenu-loader.php'; |
| 30 |
} |
| 31 |
|
| 32 |
/** |
| 33 |
* Returns the main instance of WP_Responsive_Menu. |
| 34 |
* |
| 35 |
* @since 3.1.4 |
| 36 |
* @return WP_Responsive_Menu |
| 37 |
*/ |
| 38 |
function WP_Responsive_Menu() { |
| 39 |
return WPR_Menu_Loader::instance(); |
| 40 |
} |
| 41 |
|
| 42 |
WP_Responsive_Menu(); |