mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
24 lines
606 B
PHP
24 lines
606 B
PHP
<?php
|
|
/**
|
|
* Hive Lite admin logic.
|
|
*
|
|
* @package Hive Lite
|
|
*/
|
|
|
|
/**
|
|
* Load Recommended plugins notification logic.
|
|
*/
|
|
require_once trailingslashit( get_template_directory() ) . 'inc/admin/required-plugins.php';
|
|
|
|
|
|
function hivelite_admin_setup() {
|
|
|
|
/**
|
|
* Load and initialize Pixelgrade Assistant notice logic.
|
|
* @link https://wordpress.org/plugins/pixelgrade-assistant/
|
|
*/
|
|
require_once trailingslashit( get_template_directory() ) . 'inc/admin/pixelgrade-assistant-notice/class-notice.php';
|
|
PixelgradeAssistant_Install_Notice::init();
|
|
}
|
|
add_action('after_setup_theme', 'hivelite_admin_setup' );
|