Wordpress侧边栏脚本函数.php文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress侧边栏脚本函数.php文件相关的知识,希望对你有一定的参考价值。

Standard script to create sidebar in Wordpress
  1. <?php
  2. if ( function_exists('register_sidebar') )
  3. register_sidebar(array(
  4. 'name' => 'Right Sidebar',
  5. 'before_widget' => '<div class="mywidgets>',
  6. 'after_widget' => '</div>',
  7. 'before_title' => '<h2>',
  8. 'after_title' => '</h2>',
  9. ));
  10. ?>
  11.  
  12. And in the Sidebar.php call the above with
  13.  
  14. <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("Right Sidebar") ) : ?>
  15. <?php endif; ?>

以上是关于Wordpress侧边栏脚本函数.php文件的主要内容,如果未能解决你的问题,请参考以下文章

如何让wordpress首页完全去掉侧边栏

如何在wordpress中实现不同页面隐藏或者显示侧边栏?

Wordpress 自定义演示侧边栏未出现在帖子上

WordPress如何让不同的分类显示不同的侧边栏?

如何在 WordPress 中将类添加到自定义侧边栏

PHP Wordpress页面模板 - 多个侧边栏