skip to Main Content
support@webcodingplace.com

Use WordPress ColorPicker with AngularJS

Following is Step by Step method to use WordPress ColorPicker with AngularJS 1: Enqueue the WP ColorPicker Script and Style with AngularJS Use admin_enqueue_scripts hook to enqueue script and style of WP ColorPicker as following with dependency of angularJS add_action( 'admin_enqueue_scripts', 'wcp_color_picker' );…

Read More

Enqueue Styles in WordPress Site

In wordpress sites its not very easy to enqueue styles in wordpress sites. We have to enqueue it through a function called wp_enqueue_style(). Lets explore it. Basic Syntax wp_enqueue_style( $handle, $src, $deps, $ver, $media ); $handle: It is name for current enqueue action.…

Read More
Back To Top