답변:
업데이트 : 5.0 이상에서 지원 될 것 같습니다. 티켓 # 43458 참조
이것은 어떻게 파비콘 ( .ico
) 파일이에 표시 미디어 그리드 보기 :
이것은 마이크로 템플릿의 해당 부분입니다.
<# } 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
비어 있습니다 파비콘 .
wp_mime_type_icon
필터 사용파비콘의 MIME 유형은 image/x-icon
입니다.
미디어 그리드 보기 .ico
에서 파일을 다음 과 같이 표시했습니다 .
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
무한 루프를 방지하기 위해 (기본적으로)!
그러면 파비콘이 다음과 같이 표시됩니다.
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 );
여기서 출력은 $response
배열입니다.
이 필터를 사용하여 파비콘에 누락 된 크기를 추가 할 수 있습니다.
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']
예의 일부에 관심 이 있습니다.