forked from OllieWP/ollie-menu-designer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu-designer.php
More file actions
79 lines (66 loc) · 2.52 KB
/
menu-designer.php
File metadata and controls
79 lines (66 loc) · 2.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* Plugin Name: Ollie Menu Designer
* Description: Design stunning mobile navigation and dropdown menus in minutes using the native WordPress block editor — no coding required.
* Requires at least: 6.5
* Requires PHP: 7.0
* Version: 0.1.7
* Author: Mike McAlister
* License: GPL-3.0-or-later
* License URI: https://www.gnu.org/licenses/gpl-3.0.html
* Text Domain: ollie-menu-designer
*
* @package ollie-menu-designer
*/
// Exit if accessed directly.
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Load GitHub plugin updater.
require 'includes/plugin-update-checker/plugin-update-checker.php';
use YahnisElsts\PluginUpdateChecker\v5\PucFactory;
$updater = PucFactory::buildUpdateChecker(
'https://github.com/OllieWP/menu-designer',
__FILE__,
'menu-designer'
);
$updater->getVcsApi()->enableReleaseAssets();
/**
* Registers the block using the metadata loaded from the `block.json` file.
* Behind the scenes, it registers also all assets so they can be enqueued
* through the block editor in the corresponding context.
*
* @see https://developer.wordpress.org/reference/functions/register_block_type/
*/
function menu_designer_block_init() {
register_block_type( __DIR__ . '/build/blocks/mega-menu' );
}
add_action( 'init', 'menu_designer_block_init' );
/**
* Adds a custom template part area for dropdown menus to the list of template part areas.
*
* This function introduces a new area specifically for menu templates, allowing
* the creation of sections within a dropdown menu. The new area is appended to the
* existing list of template part areas.
*
* @see https://developer.wordpress.org/reference/hooks/default_wp_template_part_areas/
*
* @param array $areas Existing array of template part areas.
*
* @return array Modified array of template part areas including the new dropdown menu area.
*/
function menu_designer_template_part_areas( array $areas ) {
$areas[] = array(
'area' => 'menu',
'area_tag' => 'div',
'description' => __( 'Menu templates are used to create dropdown menus and mobile menus.', 'ollie-menu-designer' ),
'icon' => 'layout',
'label' => __( 'Menu', 'ollie-menu-designer' ),
);
return $areas;
}
add_filter( 'default_wp_template_part_areas', 'menu_designer_template_part_areas' );
// Include preview functionality
require_once plugin_dir_path( __FILE__ ) . 'includes/preview.php';
// Include mobile menu functionality
require_once plugin_dir_path( __FILE__ ) . 'includes/mobile-menu-filter.php';