10.21.2013

wordpress初期設定/recentcommentsのCSS削除

http://www.madeinthepain.com/wordpress-head-recentcomments-style-delete/

/* インラインスタイル削除 */

function 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', 'remove_recent_comments_style' );