Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Narga/2887406 to your computer and use it in GitHub Desktop.
Save Narga/2887406 to your computer and use it in GitHub Desktop.
Wordpress Snippets - remove recent comments style
<?php
//http://www.narga.net/how-to-remove-or-disable-comment-reply-js-and-recentcomments-from-wordpress-header
function twentyten_remove_recent_comments_style() {
global $wp_widget_factory;
remove_action( 'wp_head', array( $wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style' ) );
}
add_action( 'widgets_init', 'twentyten_remove_recent_comments_style' );
?>
@mohammadfamo
Copy link

tnx

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment