如何获取类别页面中第一个博客的图像?

时间:2019-05-27 09:49:05

标签: javascript php html css

我想为每个类别页面显示每个第一篇文章的图像。我该如何实现?

这是我的示例代码:

<?php
    function first_image() {
    global $post;

    if (!has_post_thumbnail($post->ID)) {
    $attached_image = get_children( "post_parent=$post- 
   >ID&amp;post_type=attachment&amp;post_mime_type=image&amp;numberposts=1" );

   if ($attached_image) {
          foreach ($attached_image as $attachment_id => $attachment) {
               set_post_thumbnail($post->ID, $attachment_id);
          }
      }
   }
   }

   echo first_image();
   ?>

0 个答案:

没有答案
相关问题