常用函数-get_query_template()

常用函数-get_query_template() 说明 不用扩展名检索文件路径。 该函数可不检查文件扩展名而…

常用函数-get_query_template()

说明

不用扩展名检索文件路径。

该函数可不检查文件扩展名而快速检索文件路径。若文件存在,函数也可以用locate_template()查看父模板。如果不使用其他get_*_template()函数,允许检索结果出现通用文件所在位置。

该函数可与 include()或require() 共同检索路径:

   if ( '' != get_query_template( '404' ) )         
       include( get_query_template( '404' ) );  

以下用法也可以达到同样效果:

  if ( '' != get_404_template() )         
      include( get_404_template() );  

用法

<?php get_query_template( $type ) ?>

参数

$type

(字符串)(必需)没有扩展名的文件名称

默认值:None

返回的值

(字符串)

文件的完全路径

示例

注释

  • 用法:在 locate_template()返回的结果的”{$type}_template”上调用apply_filters()
  • 用法:在”{$type}.php”上调用locate_template()

修改记录

自1.5.0版本后

源文件

get_query_template()位于 wp-includes/theme.php中。

相关资源

分类:中文手册

类别:WordPress教程

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT

登录 账号发表你的看法,还没有账号?立即免费 注册