PHP 为Thesis注册新的侧边栏

Posted

tags:

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

register_sidebars(1,
    array(
        'name' => 'Sidebar 3',
        'before_widget' => '<li class="widget %2$s" id="%1$s">',
        'after_widget' => '</li>',
        'before_title' => '<h3>',
        'after_title' => '</h3>'
    )
);
function extra_sidebar() { ?>
<div id="sidebar_3" class="sidebar">
<ul class="sidebar_list">
<?php thesis_default_widget(3); ?>
</ul>
</div>
<?php }
add_action('thesis_hook_after_sidebars','extra_sidebar');

以上是关于PHP 为Thesis注册新的侧边栏的主要内容,如果未能解决你的问题,请参考以下文章

php 注册一个新的侧边栏

PHP 注册一个新的侧边栏

php 注册侧边栏

PHP 将搜索栏添加到Thesis导航栏

如何使用 html、css、php 将项目设置为在侧边栏中激活

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