PluginProbe
WP Responsive Menu / 3.2.3
WP Responsive Menu v3.2.3
3.2.3 3.2.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.1.7.1 3.1.7.2 3.1.7.3 3.1.7.4 3.1.8 3.1.9 3.1.9.1 3.1.9.2 3.2 3.2.1 trunk 1.0 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 All 35 releases
wp-responsive-menu / wp-responsive-menu.php

wp-responsive-menu.php in WP Responsive Menu 3.2.3, at wp-responsive-menu.php

41 lines 978 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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: https://www.magnigenie.com/downloads/wp-responsive-menu-pro/
6 * Author: MagniGenie
7 * Version: 3.2.3
8 * Author URI: http://magnigenie.com/
9 * Domain Path: /languages/
10 *
11 * @package wprmenu
12 */
13
14 defined( 'ABSPATH' ) || exit;
15
16 // Plugin Folder URL.
17 if ( ! defined( 'WPRMENU_FILE' ) ) {
18 define( 'WPRMENU_FILE', __FILE__ );
19 }
20
21 if ( ! defined( 'WPRMENU_BASE' ) ) {
22 define( 'WPRMENU_BASE', plugin_basename( __FILE__ ) );
23 }
24
25
26 // Include WPR Menu Loader class.
27 if ( ! class_exists( 'WPR_Menu_Loader', false ) ) {
28 include_once dirname( __FILE__ ) . '/inc/wprmenu-loader.php';
29 }
30
31 /**
32 * Returns the main instance of WP_Responsive_Menu.
33 *
34 * @since 3.1.4
35 * @return WP_Responsive_Menu
36 */
37 function WP_Responsive_Menu() {
38 return WPR_Menu_Loader::instance();
39 }
40
41 WP_Responsive_Menu();