Guest User

Untitled

a guest
Oct 22nd, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. //* Do NOT include the opening php tag above
  3. /**
  4. *
  5. * Remove Contact Form 7 CSS stylesheet from all pages except where needed.
  6. *
  7. */
  8. add_action('wp_print_styles', 'rrd_remove_cf7_css');
  9. function rrd_remove_cf7_css() {
  10. if ( function_exists( 'wpcf7_enqueue_styles' ) ) {
  11. if ( !is_page('contact')) { //replace the slug if needed
  12. wp_deregister_style('contact-form-7');
  13. }
  14. }
  15. }
Add Comment
Please, Sign In to add comment