根据load-scripts.php
文件中,不会加载未排队的脚本,所以在使用钩子时,我不需要担心它admin_enqueue_scripts
以及wp_deregister_script
作用
foreach( $load as $handle ) {
if ( !array_key_exists($handle, $wp_scripts->registered) )
continue;
然而,我对jQuery周日历的问题是
wp-jquery-ui-dialog
风格所以,要解决这个问题,我必须:
wp_deregister_style(\'wp-jquery-ui-dialog\');
$scripts = array(\'jquery-ui-core\', \'jquery-ui-widget\',
\'jquery-ui-mouse\', \'jquery-ui-resizable\', \'jquery-ui-draggable\',
\'jquery-ui-button\', \'jquery-ui-position\', \'jquery-ui-dialog\');
foreach ($scripts as $s)
wp_deregister_script($s);