Plugin Directory

Changeset 2569546


Ignore:
Timestamp:
07/21/2021 08:19:30 PM (5 years ago)
Author:
mottodesignstudio
Message:

Preparing for 0.1.6 release

Location:
sidebar-menu-items/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • sidebar-menu-items/trunk/README.txt

    r2493619 r2569546  
    22Contributors: mottodesignstudio
    33Donate link: http://motto.ca
    4 Tags: mega menu, menu, menu items, nav menu, sidebar
     4Tags: mega menu, menu, menu items, nav menu, sidebar, widget menu
    55Requires at least: 3.0.1
    6 Tested up to: 5.6.2
    7 Stable tag: 0.1.5
     6Tested up to: 5.8
     7Stable tag: 0.1.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
    1010
    11 Use sidebar areas within your menus. Simple and flexibleway for making mega menu dropdowns!
     11Use sidebars / widget areas within your menus. Simple and flexible way for making mega menu dropdowns!
    1212
    1313== Description ==
     
    1515This is a very lightweight plugin to simply add your defined sidebar widget areas as standard WordPress menu items. This is mostly useful for creating "mega menu" style dropdown menus.
    1616
    17 Current solutions for adding mega menu support come with all sorts of overhead you probably don't need. This plugin uses the default WordPress api to use widgets in your sub menus to add the content you may need in a mega menu. Style as you wish.
     17Current solutions for adding mega menu support come with all sorts of overhead you probably don't need. This plugin uses the default WordPress api to use widgets in your sub menus to add the content you may need in a mega menu, such as images, columns, shortcodes and other sub-menus. Style as you wish.
    1818
     19[youtube https://www.youtube.com/watch?v=mw5ABRabXF4 ]
    1920
    2021== Installation ==
     
    3435
    3536== Changelog ==
     37
     38= 0.1.6 =
     39Updated readme.txt
    3640
    3741= 0.1.5 =
  • sidebar-menu-items/trunk/public/class-sidebar-menu-items-public.php

    r2493619 r2569546  
    7171            $item_output = mb_convert_encoding($item_output, 'HTML-ENTITIES', $charset);
    7272            $doc = new DOMDocument;
    73             $doc->loadHTML("<html><body>$item_output</body>");
     73            @$doc->loadHTML("<html><body>$item_output</body>");
    7474            $sidebar = $doc->createElement('div');
    7575            $sidebar->setAttribute('class', $class);
  • sidebar-menu-items/trunk/sidebar-menu-items.php

    r2493619 r2569546  
    1616 * Plugin URI:        http://github.com/mottodesignstudio/wp-sidebar-menu-items
    1717 * Description:       Use sidebar areas within your menus.
    18  * Version:           0.1.5
     18 * Version:           0.1.6
    1919 * Author:            Motto
    2020 * Author URI:        https://motto.ca
     
    3535 * Rename this for your plugin and update it as you release new versions.
    3636 */
    37 define( 'SIDEBAR_MENU_ITEMS_VERSION', '0.1.5' );
     37define( 'SIDEBAR_MENU_ITEMS_VERSION', '0.1.6' );
    3838
    3939/**
Note: See TracChangeset for help on using the changeset viewer.