文章描述:
WordPress网站怎么使用小工具呢?
主题functions.php里面开启后台小工具管理
//注册小工具
register_sidebar(
array(
\'name\' =>\'侧边1\',
\'before_widget\' =>\'<div class=\"sbox\">\',
\'after_widget\' =>\'</div>\',
\'before_title\' =>\'<h2>\',
\'after_title\' =>\'</h2>\'
)
);
register_sidebar(
array(
\'name\' =>\'侧边2\',
\'before_widget\' =>\'<div class=\"sbox\">\',
\'after_widget\' =>\'</div>\',
\'before_title\' =>\'<h2>\',
\'after_title\' =>\'</h2>\'
)
);
主题sidebar.php里面使用
<?php if(is_dynamic_sidebar()) {
?>
<div><?php dynamic_sidebar(\'侧边1\')?></div>
<div><?php dynamic_sidebar(\'侧边2\')?></div>
<div>
<?php wp_list_cats();
?>
</div>
<div>
<?php wp_list_pages()?>
</div>
<div>
<?php get_links()?>
</div>
<div>
<?php wp_register()?>
</div>
<div>
<?php wp_loginout()?>
</div>
<?php
} else {
?>
侧边内容
<?php
}
?>
© 版权声明
THE END
请登录后查看评论内容