0
這可能聽起來不尋常(它對我),但在wordpress圖像幻燈片(使用獲取附件),如果圖像沒有標題,我想保留以前直到下一個填充字幕出現爲止。幻燈片標題,如果空保持前顯示
這是可能的:?/
在此先感謝您的幫助!
這可能聽起來不尋常(它對我),但在wordpress圖像幻燈片(使用獲取附件),如果圖像沒有標題,我想保留以前直到下一個填充字幕出現爲止。幻燈片標題,如果空保持前顯示
這是可能的:?/
在此先感謝您的幫助!
那麼它現在排序和道歉以前不顯示代碼,這裏有一個解決方案,爲我工作;
<?php endif; ?>
<?php if (have_posts()) : while (have_posts()) : the_post();
$attachments = attachments_get_attachments();
$total_attachments = count($attachments);
if($total_attachments > 0) :
for ($i=0; $i < $total_attachments; $i++) : ?>
<div><img src="<?php echo $attachments[$i]['location']; ?>" alt="<?php echo $attachments[$i]['caption']; ?>" title="<?php echo $attachments[$i]['title']; ?>">
<?php if($attachments[$i]['caption']==""){
$new_caption=$attachments[$i-1]['caption'];
}else{
$new_caption=$attachments[$i]['caption'];
}
?>
<h2 id="tagline" title="<?php echo $attachments[$i]['title']; ?>"><?php echo $new_caption; ?></h2>
</div>
<?php endfor; ?>
<?php endif; ?>
<?php endwhile; else: ?>
歡迎堆棧溢出!你有什麼嘗試?沒有代碼片段的問題通常很難回答。 –
你的意思是img的描述? – loQ
道歉沒有更多的用處,我已經解決了這個問題,並在下面發佈了一個解決方案! – Ste