显示WordPress帖子附件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了显示WordPress帖子附件相关的知识,希望对你有一定的参考价值。

taken from wordpress-- it took me a whole to find this on their site
  1. // place inside loop
  2. $args = array(
  3. 'post_type' => 'attachment',
  4. 'numberposts' => null,
  5. 'post_status' => null,
  6. 'post_parent' => $post->ID
  7. );
  8. $attachments = get_posts($args);
  9. if ($attachments) {
  10. foreach ($attachments as $attachment) {
  11. echo apply_filters('the_title', $attachment->post_title);
  12. the_attachment_link($attachment->ID, false);
  13. }
  14. }

以上是关于显示WordPress帖子附件的主要内容,如果未能解决你的问题,请参考以下文章

PHP 显示WordPress帖子的第一个图像附件

显示WordPress帖子的第一个图像附件

PHP 使用帖子附件的Wordpress图像库短代码

如何使用 JQuery.ajax 从每个 WordPress 帖子中获取缩略图附件?

wordpress MIME 类型帖子附件的 if 语句

PHP Wordpress插入自定义大小的帖子附件链接到自定义大小