0

我正在尝试在我的 WordPress 网站上添加两个新的侧边栏一个在左侧,另一个在右侧,然后主要内容将在中间。使布局成为三列。

我正在使用Ready!准备好成为主题!电子商务插件,我也做了我做大部分更改的孩子。

问题是侧边栏没有出现在网站本身上。当查看外观菜单下的小部件区域时,我添加的小部件区域即使在注册后也不会出现。

这是我在front-page.php中插入的代码:

<?php get_sidebar('left'); ?> 
<?php get_sidebar('right'); ?>

然后我开始创建两个 sidebar.php 文件,即

sidebar-left.php包含以下代码

<?php
/**
 * The Sidebar containing the main widget areas.
 *
 * @package Ready_ecommerce
 * @since Ready_ecommerce 0.1
 */
?>
<div id="secondary" class="widget-area sidebar" role="complementary">
        <?php do_action( 'before_sidebar' ); ?>
        <?php if ( ! dynamic_sidebar( 'sidebar-6' ) ) : ?>
                <aside id="search" class="widget widget_search">
                        <?php get_search_form(); ?>
                </aside>
                <aside id="archives" class="widget">
                        <h1 class="widget-title"><?php _e( 'Archives', 'ready_ecommerce' ); ?></h1>
                        <ul>
                                <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
                        </ul>
                </aside>
                <aside id="meta" class="widget">
                        <h1 class="widget-title"><?php _e( 'Meta', 'ready_ecommerce' ); ?></h1>
                        <ul>
                                <?php wp_register(); ?>
                                <aside><?php wp_loginout(); ?></aside>
                                <?php wp_meta(); ?>
                        </ul>
                </aside>
        <?php endif; // end sidebar widget area ?>
</div><!-- #secondary .widget-area -->
<style type="text/css">
    #content {
        float: left;

    }
</style>

sidebar-right.php的代码:

<?php
/**
 * The Sidebar containing the main widget areas.
 *
 * @package Ready_ecommerce
 * @since Ready_ecommerce 0.1
 */
?>
<div id="secondary-2" class="widget-area sidebar" role="complementary">
        <?php do_action( 'before_sidebar' ); ?>
        <?php if ( ! dynamic_sidebar( 'sidebar-5' ) ) : ?>
                <aside id="search" class="widget widget_search">
                        <?php get_search_form(); ?>
                </aside>
                <aside id="archives" class="widget">
                        <h1 class="widget-title"><?php _e( 'Archives', 'ready_ecommerce' ); ?></h1>
                        <ul>
                                <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
                        </ul>
                </aside>
                <aside id="meta" class="widget">
                        <h1 class="widget-title"><?php _e( 'Meta', 'ready_ecommerce' ); ?></h1>
                        <ul>
                                <?php wp_register(); ?>
                                <aside><?php wp_loginout(); ?></aside>
                                <?php wp_meta(); ?>
                        </ul>
                </aside>
        <?php endif; // end sidebar widget area ?>
</div><!-- #secondary .widget-area -->
<style type="text/css">
    #content {
        float: right;
        width: 759px;
    }
</style>

最后,将以下行添加到functions.php

register_sidebar( array(
            'name' => __( 'Content Pages Right', 'ready_ecommerce' ),
            'id' => 'sidebar-5',
            'description' => __( 'Right sidebar area for content pages only. Not availabe at products or catalogue pages', 'ready_ecommerce' ),
            'before_widget' => '<aside id="%1$s" class="widget %2$s">',
            'after_widget' => "</aside>",
            'before_title' => '<h2 class="widget-title">',
            'after_title' => '</h2>',
        ) );
    register_sidebar( array(
            'name' => __( 'Content Pages Left', 'ready_ecommerce' ),
            'id' => 'sidebar-6',
            'description' => __( 'Left sidebar area for content pages only. Not availabe at products or catalogue pages', 'ready_ecommerce' ),
            'before_widget' => '<aside id="%1$s" class="widget %2$s">',
            'after_widget' => "</aside>",
            'before_title' => '<h2 class="widget-title">',
            'after_title' => '</h2>',
        ) );
4

1 回答 1

0

尝试这个

<?php if(function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar-6')) : ?>

<?php endif; ?>

更新:

<div id="secondary" class="widget-area sidebar" role="complementary">
<?php do_action( 'before_sidebar' ); ?>
<?php if(function_exists('dynamic_sidebar') && dynamic_sidebar('sidebar-6')) : ?>
<aside id="search" class="widget widget_search">
    <?php get_search_form(); ?>
</aside>
<aside id="archives" class="widget">
    <h1 class="widget-title"><?php _e( 'Archives', 'ready_ecommerce' ); ?></h1>
    <ul>
        <?php wp_get_archives( array( 'type' => 'monthly' ) ); ?>
    </ul>
</aside>
<aside id="meta" class="widget">
    <h1 class="widget-title"><?php _e( 'Meta', 'ready_ecommerce' ); ?></h1>
    <ul>
        <?php wp_register(); ?>
        <aside><?php wp_loginout(); ?></aside>
        <?php wp_meta(); ?>
    </ul>
</aside>
<?php endif; // end sidebar widget area ?>

#content {浮动:左;}

请在 sidebar-left.php 中尝试上面的代码,然后从 Appearance > Widgets 检查。将文本小部件拖到侧边栏并编写一些演示文本并检查。让我知道你的更新。

于 2013-11-12T06:20:35.997 回答