Advertisement
Guest User

Untitled

a guest
Jul 7th, 2013
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.32 KB | None | 0 0
  1. function my_deregister_styles() {
  2.     wp_deregister_style ( 'smoothness' );
  3.     wp_deregister_style ( 'affiliates_admin' );
  4.     wp_deregister_style ( 'affiliates_pro_admin' );
  5.     wp_deregister_style ('affiliates_enterprise_admin');
  6.    
  7. }
  8. if ( !is_admin() ) {
  9. add_action( 'wp_print_styles', 'my_deregister_styles', 100 );
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement