Guest User

Untitled

a guest
Jul 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. add_action( 'wp_print_styles', 'shoropio_deregister_styles', 100 );
  2. function shoropio_deregister_styles() {
  3. if ( ! is_page( 'contactenos' ) ) {
  4. wp_deregister_style( 'contact-form-7' );
  5. }
  6. }
  7.  
  8. add_action( 'wp_print_scripts', 'shoropio_deregister_javascript', 100 );
  9. function shoropio_deregister_javascript() {
  10. if ( ! is_page( 'contactenos' ) ) {
  11. wp_deregister_script( 'contact-form-7' );
  12. }
  13. }
Add Comment
Please, Sign In to add comment