星期四 , 23 1 月 2025

用get_curent_screen来获取当前管理页面的id

在admin_scripts 的钩子里,用这个比用$hook 参数方便,来确定只在当前页面加载特定js文件

add_action('admin_enqueue_scripts','mcw_add_admin_script');

function mcw_add_admin_script($hook) {

	$screen = get_current_screen();

	if ($screen->id === 'widgets') {
		wp_enqueue_script('mcw-plugin-js', plugin_dir_url( __FILE__ ) . 'script.js',array('jquery'),'1.0.1',true);
	}
	
}