Reputation: 191
I create a new WordPress theme in WordPress latest version 4.5.1. and some theme css override in admin theme. How can I block this css for admin area?
Upvotes: 1
Views: 1017
Reputation: 21681
Use wp_enqueue_style to add css/js to front end.
add_action('wp_enqueue_style', 'some_hook_function'):
Use admin_enqueue_scripts to add css/js to back end.
add_action('admin_enqueue_scripts', 'some_hook_function'):
Upvotes: 1