只需通过此脚本包含一个 jQuery 文件和样式表文件。
// Register Scripts & Styles in Admin panel
function custom_color_picker_scripts() {
wp_enqueue_style( 'wp-color-picker' );
wp_enqueue_script( 'iris', admin_url( 'js/iris.min.js' ), array( 'jquery-ui-draggable', 'jquery-ui-slider', 'jquery-touch-punch' ), false, 1 );
wp_enqueue_script( 'cp-active', plugins_url('/js/cp-active.js', __FILE__), array('jquery'), '', true );
}
add_action( 'admin_enqueue_scripts', custom_color_picker_scripts);
现在创建一个新的 javascript 文件,如 cp-active.js 并使用波纹管代码将其保留在定义的“/js/cp-active.js”文件路径中。
jQuery('.color-picker').iris({
// or in the data-default-color attribute on the input
defaultColor: true,
// a callback to fire whenever the color changes to a valid color
change: function(event, ui){},
// a callback to fire when the input is emptied or an invalid color
clear: function() {},
// hide the color picker controls on load
hide: true,
// show a group of common colors beneath the square
palettes: true
});
将文本框添加到您的设置页面,其中包含颜色选择器的 CSS 类,您希望在其中显示输入文本。我使用“color_code”作为输入 $variable。
<input id="color_code" class="color-picker" name="color_code" type="text" value="" />
请查看有关添加 jQuery 颜色选择器 WordPress 主题或插件的更多详细信息