อัปเดต: ดูเหมือนว่าจะรองรับ 5.0+ ดูตั๋ว# 43458
ค่าเริ่มต้น
นี่คือวิธีที่ไฟล์favicon ( .ico
) แสดงในมุมมองMedia Grid :
นี่คือส่วนที่เกี่ยวข้องของเทมเพลตไมโคร:
<# } else if ( 'image' === data.type && data.sizes ) { #>
<div class="centered">
<img src="{{ data.size.url }}" draggable="false" alt="" />
</div>
<# } else { #>
<div class="centered">
<# if ( data.image && data.image.src && data.image.src !== data.icon ) { #>
<img src="{{ data.image.src }}" class="thumbnail" draggable="false" />
<# } else { #>
<img src="{{ data.icon }}" class="icon" draggable="false" />
<# } #>
</div>
<div class="filename">
<div>{{ data.filename }}</div>
</div>
<# } #>
ที่data.sizes
ว่างเปล่าสำหรับfavicons
วิธีที่ 1) การใช้wp_mime_type_icon
ตัวกรอง
ประเภทละครใบ้สำหรับ favicons image/x-icon
คือ
ฉันจัดการเพื่อแสดง.ico
ไฟล์ในมุมมองMedia Gridด้วย:
add_filter( 'wp_mime_type_icon', function( $icon, $mime, $post_id )
{
if( $src = false || 'image/x-icon' === $mime && $post_id > 0 )
$src = wp_get_attachment_image_src( $post_id );
return is_array( $src ) ? array_shift( $src ) : $icon;
}, 10, 3 );
ที่นี่เป็นสิ่งสำคัญที่จะให้พารามิเตอร์ที่สามwp_get_attachment_image_src
เป็น$icon = false
(โดยค่าเริ่มต้น) เพื่อหลีกเลี่ยงการวนซ้ำไม่สิ้นสุด!
จากนั้นจะแสดง favicons ดังนี้:
วิธีที่ 2) การใช้wp_prepare_attachment_for_js
ตัวกรอง
เมื่อเราโหลดมุมมองกริดสื่อเราทำการเรียกไปยังwp_ajax_query_attachments
ตัวจัดการ จะดำเนินการค้นหาสิ่งที่แนบมาต่อไปนี้:
$query = new WP_Query( $query );
$posts = array_map( 'wp_prepare_attachment_for_js', $query->posts );
ในwp_prepare_attachment_for_js
ฟังก์ชั่นนี้จะมีการเพิ่มข้อมูลต่าง ๆ ลงในWP_Post
โพสต์และพวกมันจะถูกกรองด้วย:
return apply_filters( 'wp_prepare_attachment_for_js', $response, $attachment, $meta );
โดยที่ output เป็น$response
อาเรย์
เราสามารถใช้ตัวกรองนี้เพื่อเพิ่มขนาดที่ขาดหายไปสำหรับ favicons:
add_filter( 'wp_prepare_attachment_for_js', function( $response, $attachment, $meta )
{
if( 'image/x-icon' === $response['mime']
&& isset( $response['url'] )
&& ! isset( $response['sizes']['full'] )
)
{
$response['sizes'] = array( 'full' => array( 'url' => $response['url'] ) );
}
return $response;
}, 10, 3 );
และพวกเขาจะปรากฏขึ้นเช่นนี้:
แจ้งให้ทราบว่าเราตั้งค่าurl
และส่วนหนึ่งไม่ได้width
, และheight
orientation
เราสามารถขยายโซลูชันเพิ่มเติมเพื่อเพิ่มข้อมูลนี้ด้วยความช่วยเหลือของwp_get_attachment_image_src()
ฟังก์ชันตัวอย่างเช่น แต่ฉันปล่อยให้คุณ ;-)
$response
ตัวอย่างบางส่วน:
นี่คือตัวอย่างของ$response
อาร์เรย์สำหรับfavicon.ico
ไฟล์:
Array
(
[id] => 803
[title] => favicon
[filename] => favicon.ico
[url] => http://example.tld/wp-content/uploads/2015/02/favicon.ico
[link] => http://example.tld/?attachment_id=803
[alt] =>
[author] => 11
[description] =>
[caption] =>
[name] => favicon
[status] => inherit
[uploadedTo] => 0
[date] => 1423791136000
[modified] => 1423791136000
[menuOrder] => 0
[mime] => image/x-icon
[type] => image
[subtype] => x-icon
[icon] => http://example.tld/wp-includes/images/media/default.png
[dateFormatted] => February 13, 2015
[nonces] => Array
(
[update] => 4fac983f49
[delete] => efd563466d
[edit] => df266bf556
)
[editLink] => http://example.tld/wp-admin/post.php?post=803&action=edit
[meta] =>
[authorName] => someuser
[filesizeInBytes] => 1406
[filesizeHumanReadable] => 1 kB
[compat] => Array
(
[item] =>
[meta] =>
)
)
นี่คือตัวอย่างสำหรับWordPress-Logo.jpg
รูปภาพ:
Array
(
[id] => 733
[title] => WordPress-Logo
[filename] => WordPress-Logo.jpg
[url] => http://example.tld/wp-content/uploads/2015/02/WordPress-Logo.jpg
[link] => http://example.tld/2015/02/10/test/wordpress-logo/
[alt] =>
[author] => 1
[description] =>
[caption] =>
[name] => wordpress-logo
[status] => inherit
[uploadedTo] => 784
[date] => 1423314735000
[modified] => 1423571320000
[menuOrder] => 0
[mime] => image/jpeg
[type] => image
[subtype] => jpeg
[icon] => http://example.tld/wp-includes/images/media/default.png
[dateFormatted] => February 7, 2015
[nonces] => Array
(
[update] => cb6a4bca10
[delete] => 068a4d3897
[edit] => 14b7d201ff
)
[editLink] => http://example.tld/wp-admin/post.php?post=733&action=edit
[meta] =>
[authorName] => someuser
[uploadedToLink] => http://example.tld/wp-admin/post.php?post=784&action=edit
[uploadedToTitle] => 20150209021847
[filesizeInBytes] => 127668
[filesizeHumanReadable] => 125 kB
[sizes] => Array
(
[thumbnail] => Array
(
[height] => 150
[width] => 150
[url] => http://example.tld/wp-content/uploads/2015/02/WordPress-Logo-150x150.jpg
[orientation] => landscape
)
[medium] => Array
(
[height] => 184
[width] => 300
[url] => http://example.tld/wp-content/uploads/2015/02/WordPress-Logo-300x184.jpg
[orientation] => landscape
)
[full] => Array
(
[url] => http://example.tld/wp-content/uploads/2015/02/WordPress-Logo.jpg
[height] => 620
[width] => 1010
[orientation] => landscape
)
)
[height] => 620
[width] => 1010
[orientation] => landscape
[compat] => Array
(
[item] =>
[meta] =>
)
)
ปล.: เราสนใจเป็นพิเศษใน$response['size']
ส่วนของตัวอย่างเหล่านี้