讓W(xué)ordPress支持顯示文件縮略圖功能
來源:程序員人生 發(fā)布時間:2013-10-27 13:57:28 閱讀次數(shù):3543次
讓W(xué)ordPress支持顯示文件縮略圖功能,如下圖所示:

這兩段代碼可以實現(xiàn)顯示獨立的圖片文件或者其他文件的縮略圖。首先把第一段代碼添加到functions.php中,然后你想在哪塊顯示就放在哪個模板文件中,想在文章中顯示 就放在文章的模板中。
function get_attachment_files(){
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => 0
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $post) {
setup_postdata($post);
the_attachment_link($post->ID);
}
}
}
<? get_attachment_files(); ?>