deleted file simple-local-avatars.php

This commit is contained in:
2024-07-19 19:46:42 +00:00
committed by Gitium
parent 44c2f9f9a2
commit b964c1846c
290 changed files with 0 additions and 70347 deletions

View File

@ -1,23 +0,0 @@
<?php
/**
* Loader for the ThemeIsle\GutenbergMenuIcons
*
* @package ThemeIsle\GutenbergMenuIcons
* @copyright Copyright (c) 2020, Hardeep Asrani
* @license http://opensource.org/licenses/gpl-3.0.php GNU Public License
* @since 1.0.0
*/
define( 'THEMEISLE_GUTENBERG_MENU_ICONS_VERSION', '1.0.5' );
if ( function_exists( 'add_action' ) ) {
add_action(
'plugins_loaded',
function () {
// call this only if Gutenberg is active.
if ( function_exists( 'register_block_type' ) ) {
require_once dirname( __FILE__ ) . '/class-gutenberg-menu-icons.php';
}
}
);
}