我在single.php中使用了一個簡單的jQuery圖像幻燈片,即將所有圖像附件調用到我的文章。但我想排除在實際文章中張貼的圖像,但保留實際附加到文章的所有圖像。從附件圖像中排除帖子中的圖像
我使用這段代碼抓住所有的圖片附件,但不幸的是,它也抓住了文章的內容,這是沒有必要的範圍內的所有圖片:
<?php
$attachs = get_posts(array(
'numberposts' => -1,
'post_type' => 'attachment',
'post_parent' => get_the_ID(),
'post_mime_type' => 'image', // get attached images only
'output' => ARRAY_A
));
if (!empty($attachs)) {
foreach ($attachs as $att) {
// get image's source based on size,
// can be 'thumbnail', 'medium', 'large', 'full'
// or registed post thumbnails sizes
$src = wp_get_attachment_image_src($att->ID, 'full');
$src = $src[0];
// show image
echo "<div style='margin: 0 10px 10px 0; float: left'><img src='$src' /></div>";
}
}
?>
任何建議?
您是否找到了解決方案? – testing 2012-03-07 17:32:16