updated plugin Menu Icons version 0.13.10

This commit is contained in:
2024-03-28 09:39:59 +00:00
committed by Gitium
parent d033371227
commit 60de585044
18 changed files with 1170 additions and 53 deletions

View File

@ -11,7 +11,7 @@
* Plugin name: Menu Icons
* Plugin URI: https://github.com/Codeinwp/wp-menu-icons
* Description: Spice up your navigation menus with pretty icons, easily.
* Version: 0.13.8
* Version: 0.13.10
* Author: ThemeIsle
* Author URI: https://themeisle.com
* License: GPLv2
@ -29,7 +29,7 @@ final class Menu_Icons {
const DISMISS_NOTICE = 'menu-icons-dismiss-notice';
const VERSION = '0.13.8';
const VERSION = '0.13.10';
/**
* Holds plugin data
@ -103,11 +103,16 @@ final class Menu_Icons {
add_action( 'admin_action_menu_icon_hide_notice', array( __CLASS__, 'wp_menu_icons_dismiss_dashboard_notice' ) );
add_filter(
'menu_icons_load_promotions',
'wp_menu_icons_load_promotions',
function() {
return array( 'otter' );
}
);
add_filter(
'wp_menu_icons_dissallowed_promotions', function () {
return array( 'om-editor', 'om-image-block' );
}
);
}