Definition:
function twentyten_remove_recent_comments_style() {}
Removes the default styles that are packaged with the Recent Comments widget.
To override this in a child theme, remove the filter and optionally add your own function tied to the widgets_init action hook.
Source code
function twentyten_remove_recent_comments_style() { add_filter( 'show_recent_comments_widget_style', '__return_false' ); }
3111
No comments yet... Be the first to leave a reply!