Guest User

Untitled

a guest
Nov 20th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function register_style() {
  2. if (is_page..something) {
  3. wp_enqueue_style('style', PLUGIN_URL . 'style.css');
  4. }
  5. }
  6. add_action('admin_enqueue_scripts', 'register_style');
  7.  
  8. function register_style() {
  9. wp_enqueue_style('style', PLUGIN_URL . 'style.css');
  10. }
  11.  
  12. if (is_page..something) {
  13. add_action('admin_enqueue_scripts', 'register_style');
  14. }
Add Comment
Please, Sign In to add comment