Advertisement
Guest User

Emil

a guest
Dec 2nd, 2010
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. /**
  2.  * Recent Comments Style Removal
  3.  */
  4.  
  5. function my_remove_recent_comments_style() {
  6.     add_filter( 'show_recent_comments_widget_style', '__return_false' );
  7. }
  8. add_action( 'widgets_init', 'my_remove_recent_comments_style' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement