WordPress获取侧边栏函数get_sidebar用法
WordPress函数介绍——获取侧边栏函数get_sidebar详解。

函数原型
get_sidebar函数位于wp-includes/general-template.php第100行左右,函数原型如下:
function get_sidebar( $name = null ) {/**
* Fires before the sidebar template file is loaded.
*
* The hook allows a specific sidebar template file to be used in place of the
* default sidebar template file. If your file is called sidebar-new.php,
* you would specify the filename in the hook as get_sidebar( 'new' ).
*
* @since 2.2.0
* @since 2.8.0 $name parameter added.
*
* @param string|null $name Name of the specific sidebar file to use. null for the default sidebar.
*/do_action( 'get_sidebar', $name );$templates = array();$name = (string) $name;if ( '' !== $name )$templates[] = "sidebar-{$name}.php";$templates[] = 'sidebar.php';locate_template( $templates, true );}函数介绍
由上述代码可以看出,get_sidebar函数需要一个字符串类型参数,该参数可以为空,为空时会自动查找主题目录下的sidebar.php文件作为侧边栏,如果主题目录下没有sidebar.php文件将会使用默认的 wp-includes/theme-compat/sidebar.php 文件作为侧边栏。如果传入参数,则会引入sidebar-参数名.php作为侧边栏。
使用方法
<?php get_sidebar();?>
如果使用传入参数dAImadog,将会加载主题目录下sidebar-daimadog.php文件作为侧边栏。
<?php get_sidebar('daimadog');?>上一篇:WordPress获取搜索表单函数get_search_form用法
栏 目:WordPress
下一篇:WordPress获取评论模板函数comments_template用法
本文标题:WordPress获取侧边栏函数get_sidebar用法
本文地址:https://zz.feitang.co/CMSjiaocheng/25143.html
您可能感兴趣的文章
- 07-15Win10玩星空(Starfield)黑屏闪退怎么办?玩星空黑屏闪退的解决方法
- 07-15Win10家庭版如何设置开机密码?Win10家庭版设置开机密码的方法
- 07-15远程差分压缩的用处是什么?Win10要如何开启或者关闭远程差分压缩?
- 07-15怎么扩充C盘空间?扩充电脑C盘大小方法教程
- 07-15Win10系统更新后开机黑屏怎么办?Win10更新后开机黑屏的解决方法
- 07-15神舟战神T8笔记本怎么一键重装系统Win10?
- 07-15Win10暂停更新还是会更新怎么办?Win10关闭更新后仍然更新的解决方法
- 07-15Win10系统delivery optimization服务占用网速怎么办
- 07-15Win10更新后开机变得很慢怎么办?两种方法解决win10开机慢
- 07-15Win10系统C盘哪些文件可以删除?C盘无用文件都在哪?


阅读排行
- 1Win10玩星空(Starfield)黑屏闪退怎么办?玩星空黑屏闪退的解决方法
- 2Win10家庭版如何设置开机密码?Win10家庭版设置开机密码的方法
- 3远程差分压缩的用处是什么?Win10要如何开启或者关闭远程差分压缩?
- 4怎么扩充C盘空间?扩充电脑C盘大小方法教程
- 5Win10系统更新后开机黑屏怎么办?Win10更新后开机黑屏的解决方法
- 6神舟战神T8笔记本怎么一键重装系统Win10?
- 7Win10暂停更新还是会更新怎么办?Win10关闭更新后仍然更新的解决方法
- 8Win10系统delivery optimization服务占用网速怎么办
- 9Win10更新后开机变得很慢怎么办?两种方法解决win10开机慢
- 10Win10系统C盘哪些文件可以删除?C盘无用文件都在哪?
推荐教程
- 09-22wordpress如何添加描述
- 07-15Win10系统下CF烟雾头怎么调最清楚
- 11-11国外WordPress精美主题如何DIY汉化成中文版呢?
- 11-11wordpress附件保存目录改为年月日和上传文件重命名为时间戳
- 11-11WordPress之给文章内容中间插入广告的实现方法
- 10-19纯代码给WordPress网站添加独立下载页面功能
- 10-18让注册用户可以上传自己的头像的WordPress插件-WP User Avatar v2.
- 10-24Win10无法调节声音怎么办?Win10无法调节声音的解决方法
- 10-18WordPress 技巧:WordPress 后台也使用七牛云存储
- 10-19WordPress上传图片HTTP错误的解决方法




