芝麻web文件管理V1.00
编辑当前文件:/home/seolotod/critterchoice.com/wp-content/mu-plugins/vendor/wpex/expert-banner/expert-banner.php
. * * @package Expert_Banner */ defined('ABSPATH') || exit; // We only enqueue the scripts for GD not resellers. if ( defined( 'GD_RESELLER' ) && GD_RESELLER > 1 ) { return; } define('WPEX_EB_OPTION_HIDDEN', 'wpex_eb_hidden'); /** * Enqueue styles to handle expert banner styles. * * @action admin_enqueue_scripts * * @param string $hook */ function wpex_eb_enqueue_scripts() { wp_enqueue_style( 'wpex-expert-banner', plugins_url("build/index.css", __FILE__), [], '1.0.0' ); wp_enqueue_script( 'wpex-expert-banner', plugins_url("build/index.js", __FILE__), [], '1.0.0', true, ); wp_localize_script( 'wpex-expert-banner', 'wpexExpertBanner', [ 'optionHidden' => WPEX_EB_OPTION_HIDDEN ], '1.0.0', true, ); } add_action( 'admin_enqueue_scripts', 'wpex_eb_enqueue_scripts' ); /** * Register the settings to hide the expert banner. * * @action admin_enqueue_scripts * * @param string $hook */ function wpex_eb_register_settings() { register_setting( WPEX_EB_OPTION_HIDDEN, WPEX_EB_OPTION_HIDDEN, [ 'show_in_rest' => true, 'default' => false, 'type' => 'boolean', ] ); } add_action( 'rest_api_init', 'wpex_eb_register_settings' );