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

Posted

tags:

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

  1. <?php
  2. $attachments = get_children(array('post_parent' => get_the_ID(), 'post_type' => 'attachment', 'post_mime_type' => 'image', 'orderby' => 'menu_order'));
  3. if ( ! is_array($attachments) ) continue;
  4. $count = count($attachments);
  5. $first_attachment = array_shift($attachments);
  6. ?>
  7. <?php echo wp_get_attachment_image($first_attachment->ID); ?>

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

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

PHP 显示WordPress帖子附件

显示WordPress帖子附件

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

WordPress 自定义帖子类型前端特色图片提交

Wordpress - 特色图像元框未显示在自定义帖子类型上