ウィジェットとして利用可能な「最近のコメント」の表示ですが、このウィジェットを使用すると、<style>
タグが<head>
内に出力されてしまいます。
出力されるstyleタグの内容
<style type="text/css">.recentcomments a{display:inline !important;padding:0 !important;margin:0 !important;}</style>
これを出力しないようにするには、以下のコードをfunctions.phpで記述するとOKです。
最近のコメントウィジェット用のインラインスタイルタグを削除
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' );
コメント