* @copyright Copyright (c) 2022, AeonWP * @link https://aeonwp.com/aeonblock * @license http://www.gnu.org/licenses/gpl-2.0.html */ /** * Add the menu item under Appearance, themes. */ function aeonblock_menu() { add_theme_page( __( 'About AeonBlock', 'aeonblock' ), __( 'About AeonBlock', 'aeonblock' ), 'edit_theme_options', 'aeonblock-theme', 'aeonblock_page' ); } add_action( 'admin_menu', 'aeonblock_menu' ); /** * Enqueue styles for the help page. */ function aeonblock_admin_scripts( $hook ) { if ( 'appearance_page_aeonblock-theme' !== $hook ) { return; } wp_enqueue_style( 'aeonblock-admin-style', get_template_directory_uri() . '/css/admin.css', array(), '' ); } add_action( 'admin_enqueue_scripts', 'aeonblock_admin_scripts' ); /** * Add the theme page */ function aeonblock_page() { ?>