Twenty Eleven主题很漂亮,可定制性强,但文章页面没有侧边栏挺让人不爽。下面介绍如何添加侧边栏。
1.在single.php文件中找到以下代码:
<?php get_footer(); ?>
在其上添加
<?php get_sidebar(); ?>
在其它页面添加的方法,同上。
2.在functions.php文件中删除以下代码:
function twentyeleven_body_classes( $classes ) {
if ( ! is_multi_author() ) {
$classes[] = ‘single-author’;
}
if ( is_singular() && ! is_home() && ! is_page_template( ‘showcase.php’ ) && ! is_page_template( ‘sidebar-page.php’ ) )
$classes[] = ‘singular’;
return $classes;
}
add_filter( ‘body_class’, ‘twentyeleven_body_classes’ );
这样,就可以了。
-
所有主机信息仅是为及时分享并收录,不做推荐!