WordPress 21页上的侧边栏

时间:2011-07-15 作者:Niraj Chauhan

我正在使用2011年的主题,任何我如何设法获得单曲侧边栏。php页面,通过安装子主题,

但现在我想在页面上添加侧边栏,

我怎么得到它?

2 个回复
最合适的回答,由SO网友:Bainternet 整理而成

有趣的是,你应该问,我刚刚发布了一篇关于how to add a sidebar on posts and pages in Twenty Eleven

SO网友:Jeff Cohan

班特网的教程很好。

另一个对我有用的教程(实际上有点简单)如下所示:

http://futurewebblog.com/add-sidebar-support-posts-twenty-eleven-theme/

下面是我在函数中添加的内容。php文件,在学习了这两个教程之后:

    /*
     * Fix for no sidebar in single posts
     * From http://futurewebblog.com/add-sidebar-support-posts-twenty-eleven-theme/
     */

    /* In child themes the functions.php is applied before the parent
     * theme\'s functions.php. So we need to wait for the parent theme to add 
     * it\'s filter before we can remove it.
     */
    add_action( \'after_setup_theme\', \'my_child_theme_setup\' );

    /**
     * Removes the filter that adds the "singular" class to the body element
     * which centers the content and does not allow for a sidebar
     * By http://futurewebblog.com/add-sidebar-support-posts-twenty-eleven-theme/
     */
    function my_child_theme_setup() {
        remove_filter( \'body_class\', \'twentyeleven_body_classes\' );
    }
我不需要对CSS做任何更改,而且很有效!

HTH。杰夫

结束

相关推荐

带有Pages_Links的定制POST类型档案404

im使用paginate_links function 要在我的自定义post类型归档文件上创建分页,无论我做什么,在查看第2页时,我都会遇到404个错误(即单击分页跟踪中的一页)。我已经检查和研究过了,似乎没有取得任何进展。这是archive-my\\u CUSTOM\\u POST\\u类型中循环前的my查询。php:<?php global $wp_query; $args = array_merge( $wp_query->query, array(