12
A
回答
23
上傳圖像被存儲爲與類型「附件」的帖子;使用get_posts()和正確的參數。在the Codex entry for get_posts(),這個例子:
<?php
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => null, // any parent
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $post) {
setup_postdata($post);
the_title();
the_attachment_link($post->ID, false);
the_excerpt();
}
}
?>
...遍歷所有的附件,並顯示它們。
如果您只想獲取圖像,TheDeadMedic評論過,您可以在參數中使用'post_mime_type' => 'image'
進行過濾。
1
<ul>
<?php if (have_posts()) : while (have_posts()) : the_post();
$args = array(
'post_type' => 'attachment',
'numberposts' => -1,
'post_status' => null,
'post_parent' => $post->ID
);
$attachments = get_posts($args);
if ($attachments) {
foreach ($attachments as $attachment) {
echo '<li>';
echo wp_get_attachment_image($attachment->ID, 'full');
echo '<p>';
echo apply_filters('the_title', $attachment->post_title);
echo '</p></li>';
}
}
endwhile; endif; ?>
</ul>
+0
我是否需要創建一個新頁面? – TheBlackBenzKid 2016-09-19 05:44:29
相關問題
- 1. 獲得沒有SDP文件的RTP流媒體功能(Gstreamer)
- 2. Wordpress - 擁有插件 - 獲取媒體庫的所有圖像
- 3. 所有類型媒體的Wordpress畫廊?
- 4. 什麼是存儲媒體文件的有效方法?
- 5. 獲得核心WordPress功能
- 6. 如何在WordPress中重命名所有媒體文件?
- 7. 什麼是獲取ExtJs面板中所有項目的功能
- 8. 什麼是所有文件
- 9. 文件/文件夾權限和所有權打破了WordPress的功能,什麼是安全解決方案?
- 10. 如何在wordpress中獲得現有媒體的網址
- 11. 從wordpress中的某個上傳位置獲取所有媒體
- 12. wordpress-java API |如何獲得帖子的媒體附件鏈接?
- 13. 如何動態獲取/ res/raw中的所有媒體文件?
- 14. 獲取Android 2.3中的所有非媒體文件
- 15. 如何獲取計算機上的所有媒體文件
- 16. 爲什麼我不能獲得我的$文檔就緒功能
- 17. 什麼是最好的做法,稱爲wordpress媒體上傳(wp.media)
- 18. 爲什麼Django不能提供我的媒體文件?
- 19. c從C++獲得了什麼功能?
- 20. 什麼是所有可能的斷言功能?
- 21. 如何獲得媒體附件鏈接沒有任何鏈接在WordPress的
- 22. Symfony 2獲得實體類中的Sonata媒體文件路徑
- 23. 創建一個包含所有功能的wordpress文件
- 24. 我怎麼能用WinAPI獲得文件所有者C++
- 25. CSS媒體查詢功能
- 26. 獲得所有文件從MongoDB的,而不是所有型號
- 27. 在Wordpress中有沒有像'添加媒體'功能的好寶石?
- 28. WordPress:爲什麼圖像沒有保存在媒體庫中?
- 29. 如何獲得我的攝像頭的流媒體RTSP/RTMP網址是什麼?
- 30. WordPress的:我如何獲得所有'the_content'過濾器的註冊功能
是的,你可以用' 'post_mime_type'=>「image''在'$ args',和WordPress會巧妙地搭配,對所有的圖像MIME類型:) – TheDeadMedic 2010-07-22 11:31:15
@TheDeadMedic好消息!我從來沒有需要回到特定的類型。 – 2010-07-22 12:05:41
對於匹配MIME類型的TheDeadMedic很好的答案和榮譽! :) – hsatterwhite 2010-07-22 12:17:13