답변:
예- the_post_thumbnail()
속성 인수의 일부로 사용하려는 클래스를 전달할 수 있습니다 ( 예 :<?php the_post_thumbnail('thumbnail', array('class' => 'your-class-name')); ?>
참조 : http://codex.wordpress.org/Function_Reference/the_post_thumbnail#Styling_Post_Thumbnails
해당 클래스를 필터링 할 수 있습니다.
function alter_attr_wpse_102158($attr) {
remove_filter('wp_get_attachment_image_attributes','alter_attr_wpse_102158');
$attr['class'] .= ' new-class';
return $attr;
}
add_filter('wp_get_attachment_image_attributes','alter_attr_wpse_102158');
전화하기 직전에 필터를 추가하십시오 the_post_thumbnail
. 필터가 자동으로 제거됩니다.
거기에 도착하는 것은 약간의 여행이지만, 그 필터를 적용하는 the_post_thumbnail
용도 get_the_post_thumbnail
를 사용합니다 wp_get_attachment_image
.
array($this,'methodname')
다음을 사용하여 필터를 사용하여 정적 클래스를 사용할 수 있습니다.array('ClassName','methodname')
attachment-$size
.