スクリプトをwp_enqueue_scriptし、関数をwp_enqueue_styleに追加して、functions.phpファイルにスタイルを追加する必要があります。このスクリプトで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( 'wp_enqueue_scripts', custom_color_picker_scripts);
ここで、cp-active.jsのような新しいJavaScriptファイルを作成し、ベローズコードを使用して「/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クラスを使用して、テキストボックスを設定ページに追加します。入力$ variableに「color_code」を使用しています。
<input id="color_code" class="color-picker" name="color_code" type="text" value="" />
詳細はこちらから