其他分享
首页 > 其他分享> > wordpress侧边栏

wordpress侧边栏

作者:互联网

侧边栏文件:sidebar.php模板文件

函数

get_sidebar()函数

描述:加载sidebar.php模板文件

<?php
get_sidebar();

register_sidebar()函数

描述:注册小工具

<?php
register_sidebar(
	array(
    	'name'			=> '侧边栏',
        ‘before_widget’	=> '<div class="sbox">',
        'after_widget'	=> '</div>',
        'before_title' 	=> '<h2>',
        'after_title'	=> '</h2>'
    )
)

is_active_sidebar()函数

描述:判断当前的侧边栏是否激活

<?php
is_active_sidebar($index);
$index		侧边栏的名称或id

is_dynamic_sidebar()函数

描述:判断是否存在侧边栏小工具

<?php
if(is_dynamic_sidebar()){
    true
}else{
    false
}

dynamic_sidebar()函数

描述:输出小工具

<?php
dynamic_sidebar();

wp_list_cats()函数

描述:获取分类链接列表

<?php
wp_list_cats();

wp_list_pages()函数

描述:获取页面列表

<?php
wp_list_pages();

get_links()函数

描述:获取友情链接

<?php
get_links();

wp_register()函数

描述:获取注册连接(登录成功显示管理“站点”)

<?php
wp_register();

wp_loginout()函数

描述:获取退出链接(未登录显示“登录”)

<?php
wp_loginout();

标签:函数,侧边,获取,wordpress,wp,sidebar,描述
来源: https://www.cnblogs.com/lcxuanBlog/p/14503643.html