PHP 注册一个新的侧边栏

Posted

tags:

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

<?php

function my_sidebar() {
	register_sidebar( array(
		'name' => __( 'Sidebar', 'theme' ),
		'id' => 'widget-1',
		'description' => 'This is a sidebar',
		'class' => 'content',
		'before_widget' => '<div id="widget-1" class="widget widget-1">',
		'after_widget' => "</div></div>",
		'before_title' => '<div class="widget-title">',
		'after_title' => '</div><div class="widget-content">',
	) );
}
add_action( 'widgets_init', 'my_sidebar' );

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

PHP 注册一个新的侧边栏

PHP 为Thesis注册新的侧边栏

php 注册侧边栏

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

当侧边栏在 single.php 中时,侧边栏分页不显示

下划线 Wordpress 主题 - 添加第二个侧边栏