WordPress-twentyelrven 子テーマ/個別記事もサイドバーを出す

image.php、page.php、single.php 、function.php の4つを子テーマにコピー。
image.php、page.php、single.php に <?php get_sidebar(); ?> を <?php get_footer(); ?> の直前に加える。
function.php はいったん空にして<?php?>で囲み、中に

add_action(‘after_setup_theme’,’remove_body_class_singular’);
function remove_body_class_singular(){
remove_filter(‘body_class’,’twentyeleven_body_classes’);
}

と記述。シングルでの出力を取り消す作業。

Share on Google+Tweet about this on TwitterShare on Facebook