PHP Wordpress - 2个或更多侧边栏
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Wordpress - 2个或更多侧边栏相关的知识,希望对你有一定的参考价值。
-----------------------------------
Functions.php
-----------------------------------
if ( function_exists('register_sidebar') )
register_sidebar(array('name'=>'sidebar1',
'description' => 'This shows in admin widget header.',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h4>',
'after_title' => '</h4>',
));
register_sidebar(array('name'=>'sidebar2',
'description' => 'This shows in admin widget header.',
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h4>',
'after_title' => '</h4>',
));
-----------------------------------------
Sidebar.php
-----------------------------------------
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('sidebar1') ) : ?>
<?php endif; ?>
-----------------------------------------
Sidebar2.php
-----------------------------------------
<?php /* Widgetized sidebar, if you have the plugin installed. */
if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('sidebar2') ) : ?>
<?php endif; ?>
以上是关于PHP Wordpress - 2个或更多侧边栏的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress页面模板 - 多个侧边栏
PHP Wordpress中的多个动态侧边栏
PHP 用于function.php文件的Wordpress侧边栏脚本
PHP Wordpress条件标签在行动(不同侧边栏)
PHP 将2个或更多图像合并为一个
PHP wordpress |禁用页面模板上的侧边栏,小部件