激活自定义侧边栏小工具

时间:2011-09-20 作者:kidwon

嘿,伙计们,我正在尝试激活wp小部件的侧栏。

因此,我的HTML如下所示:

<aside id="leftSidebar">
   <section>
      <h3></h3>
      <div class="contents"></div>
   </section>
</aside>
所以我想把小部件放在“contents”中,它的标题放在h3标签中。我的activate函数应该是什么,如果需要的话,应该在html中放什么php?我没有找到任何靠近我的例子,所以我非常感谢任何提前10倍的帮助。

1 个回复
最合适的回答,由SO网友:Jeremy Jared 整理而成

You would register the sidebar in the functions.php file with something like this:

<?php
register_sidebar(array(\'name\'=>\'custom-content\',
 \'before_widget\' => \'<section>\',
 \'after_widget\' => "</section>",
 \'before_title\' => \'<h3>\',
 \'after_title\' => "</h3>"
  ));
?>

And Use it in your theme like this:

<div class="contents">
<?php if ( function_exists(dynamic_sidebar(1) ) ) : ?>
    <?php dynamic_sidebar(custom-content); ?>
<?php endif; ?>
</div>
结束