当前浏览:首页 / WordPress函数 / get_attachment_template()

get_attachment_template()

在当前或父模板中检索附件模板的路径

attachment 附件more...

templatemore...


描述

此模板的层次结构如下所示:

  1. {mime_type}-{sub_type}.php
  2. {sub_type}.php
  3. {mime_type}.php
  4. attachment.php

例如:

  1. image-jpeg.php
  2. jpeg.php
  3. image.php
  4. attachment.php

模板层次结构和模板路径可通过‘$type_template_hierarchy’‘$type_template’动态钩子进行过滤,其中$type是“attachment”。

另见


返回

(string) 附件模板文件的完整路径。



源码

查看源码 官方文档


更新日志

版本描述
4.3.0mime类型逻辑的顺序颠倒了,因此层次结构更具逻辑性
2.0.0开始引入