我正在构建一个自定义主题。我的侧边栏根本没有生成。
在函数中。php,我有:
if ( function_exists(\'register_sidebar\') ) {
register_sidebar(array(
\'name\' => \'Standard Sidebar\',
\'id\' => \'sidebar-1\',
\'description\' => \'Appears as the sidebar on standard pages\',
\'before_widget\' => \'<li id="%1$s" class="widget %2$s">\',
\'after_widget\' => \'</li>\',
\'before_title\' => \'<h2 class="widgettitle">\',
\'after_title\' => \'</h2>\',
));
}
在侧栏中。php,我有:
<?php echo \'<div>You made it into the sidebar function</div>\'; ?>
<?php if ( is_active_sidebar( \'sidebar-1\' ) ) : ?>
<div id="sidebar" class="widget-area" role="complementary">
<?php dynamic_sidebar( \'sidebar-1\' ); ?>
</div><!-- #sidebar -->
<?php endif; ?>
在第页中。php,我有:
<?php
/**
* Page
*/
get_header();
?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="breadcrumbs_container">
<div class="breadcrumbs">
<?php if ( function_exists(\'yoast_breadcrumb\') ) {
yoast_breadcrumb(\'<p id="breadcrumbs">\',\'</p>\');
} ?>
</div>
<div>
<div class="container">
<div class="content_container">
<div class="page">
<h1><?php the_title(); ?></h1>
<div class="content">
<?php the_content(); ?>
</div>
</div>
<?php get_sidebar; ?>
</div>
</div>
<?php endwhile; ?>
<?php get_footer(); ?>
我没有看到“您已将其添加到侧栏函数中”,并且在我显示的页面的源代码中也没有显示任何内容。
这是一个普通的Wordpress页面,我还没有创建自定义模板,所以应该使用页面。php。