Archive for the ‘Wordpress’ Category

Please follow the below step to add the color picker in wordpress admin panel

Step-1 Register the wp color picker style by adding the below code
wp_enqueue_style( ‘wp-color-picker’ );
Step-2 Register the wp color picker js by adding the below code
wp_enqueue_script( ‘wp-color-picker’ );

Step-3 Add the below code to pick the color in your form/page etc.

Step-4 Add the below script to call the color picker function
jQuery(document).ready(function($){
$(‘.my-color-field’).wpColorPicker();
});

thats it..