Advertisement
Guest User

Untitled

a guest
May 7th, 2013
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Load plugin styles/JS only for pages that needs them
  2. function my_deregister_styles() {
  3.     if (!is_page('Contact')) {
  4.         wp_deregister_style('contact-form-7');
  5.     }
  6.     if (!is_single()) {
  7.         wp_deregister_style('tfg_style');
  8.     }
  9. }
  10. function my_deregister_javascript() {
  11.     if (!is_page('Contact')) {
  12.         wp_deregister_script('contact-form-7');
  13.     }
  14.     if (!is_single()) {
  15.         wp_deregister_script('tfg_script');
  16.     }
  17. }
  18. add_action('wp_print_styles', 'my_deregister_styles', 100);
  19. add_action('wp_print_scripts', 'my_deregister_javascript', 100);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement