在函数中注册侧栏。php使用register_sidebar.在仪表板的侧栏中放置一些小部件(外观/小部件)
使用以下方法在网站的特定页面上显示侧栏dynamic_sidebar 在php代码中。或者您可以创建一个边栏-{您的边栏id}。php文件和使用get_sidebar 无论您想在哪里显示侧边栏使用CSS/HTML设置侧栏样式,使其显示在左侧一个工作示例:
functions.php
register_sidebar(array(
\'name\' => \'sidebar-left\',
\'before_widget\' => \'<div class="sidebar-box">\',
\'after_widget\' => \'</div>\',
\'before_title\' => \'<div class="widget-title">\',
\'after_title\' => \'</div>\'
));
sidebar-left.php
<div id="sidebar-left">
<?php if ( function_exists(\'dynamic_sidebar\') ) dynamic_sidebar(\'sidebar-left\');?>
</div>
style.css
#sidebar-left { float: left; width: 300px; }
// modify to your needs.
//在主页上显示侧栏的示例
index.php<?php get_header();?>
// your code
// more of your code
<?php get_sidebar(\'left\');?>
<?php get_footer();?>