問題描述
我正在使用帖子縮略圖鏈接到一個頁面。
是否可以為帖子縮略圖添加類名。
<li><a href="<?php%20the_permalink();%20?>" ><?php the_post_thumbnail(); ?></a></li>
最佳解決方案
是的 – 您可以將要使用的類傳遞給 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,它適用於該過濾器。
參考文獻
注:本文內容整合自 Google/Baidu/Bing 輔助翻譯的英文資料結果。如果您對結果不滿意,可以加入我們改善翻譯效果:薇曉朵技術論壇。