wordpress attachment.php,wordpress函数get_attachment_template()用法示例

get_attachment_template()

Retrieve path of attachment template in current or parent template.

描述

The hierarchy for this template looks like:

{mime_type}-{sub_type}.php

{sub_type}.php

{mime_type}.php

attachment.php

An example of this is:

image-jpeg.php

jpeg.php

image.php

attachment.php

The template hierarchy and template path are filterable via the ‘$type_template_hierarchy’ and ‘$type_template’ dynamic hooks, where $type is ‘attachment’.

返回值

(string) Full path to attachment template file.

源代码

File: wp-includes/template.php

function get_attachment_template() {

$attachment = get_queried_object();

$templates = array();

if ( $attachment ) {

if ( false !== strpos( $attachment->post_mime_type, '/' ) ) {

list( $type, $subtype ) = explode( '/', $attachment->post_mime_type );

} else {

list( $type, $subtype ) = array( $attachment->post_mime_type, '' );

}

if ( ! empty( $subtype ) ) {

$templates[] = "{$type}-{$subtype}.php";

$templates[] = "{$subtype}.php";

}

$templates[] = "{$type}.php";

}

$templates[] = 'attachment.php';

return get_query_template( 'attachment', $templates );

}

更新日志

Version

描述

4.3.0

The order of the mime type logic was reversed so the hierarchy is more logical.

2.0.0

Introduced.

相关函数

Uses

wp-includes/query.php:

get_queried_object()

wp-includes/template.php:

get_query_template()

User Contributed Notes

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值