我无法完全加载colorbox。
我正在尝试添加颜色框,以便在插件管理中使用。
我前端不需要它。
我可以得到css,但不能得到jquery。colorbox-min.js或要加载到中的内联脚本<head>
.
以下是我所拥有的:
/*--------------------------------------------------------------------*/
/* admin Stylesheet
/*--------------------------------------------------------------------*/
add_action( \'admin_enqueue_scripts\', \'add_wlmm_admin_stylesheets\' );
function add_wlmm_admin_stylesheets() {
if (is_admin()) {
/*
* Includes css for:
*
* - plugin optins framework
* - colorbox
*/
wp_enqueue_style( \'wlmm-admin-style\', WLMM_URL . \'admin/css/wlmm-admin-styles.css\' );
}
}
/*--------------------------------------------------------------------*/
/* load colorbox for admin help images
/*--------------------------------------------------------------------*/
add_action( \'wp_enqueue_scripts\', \'wlmm_do_colorbox_js\' );
add_action( \'wp_head\', \'wlmm_do_colorbox_script\' );
function wlmm_do_colorbox_js() {
if (is_admin()) {
wp_enqueue_script( \'colorbox\', WLMM_URL . \'admin/scripts/colorbox/jquery.colorbox-min.js\', array( \'jquery\' ) );
}
}
function wlmm_do_colorbox_script() {
if ( ! defined( \'COLORBOX_WIDTH\' ) ) define( \'COLORBOX_WIDTH\', \'95\' );
if ( ! defined( \'COLORBOX_HEIGHT\' ) ) define( \'COLORBOX_HEIGHT\', \'95\' );
if ( ! defined( \'COLORBOX_OPACITY\' ) ) define( \'COLORBOX_OPACITY\', \'0.6\' );
// Colorbox settings
echo \'
<script>
jQuery(document).ready(function () {
jQuery("a.admin").colorbox({ width:\'.COLORBOX_WIDTH.\', height:\'.COLORBOX_HEIGHT.\', opacity:\'.COLORBOX_OPACITY.\' });
});
</script>
\';
}