获取自定义帖子类型wordpress的第一张图片

时间:2017-11-01 23:50:50

标签: php wordpress loops

我有这段代码

function display_categoria($args) {
$query = new WP_Query(array(
    'post_type' => 'job_listing',
    'post_status' => 'publish',
    'posts_per_page' => 5
));


while ($query->have_posts()) {
  echo $query->the_post();
   $id=get_the_id();
   echo $query1=get_permalink();
  }

 wp_reset_query();
}

add_shortcode( 'este', 'display_categoria' );
理论上我可以解决它在循环中的问题

 if ( has_post_thumbnail() ) {
the_post_thumbnail();
                            } 

但很多条目没有缩略图(特色图片),可以理解吗?

1 个答案:

答案 0 :(得分:1)

这应检索每个帖子的第一张图片的网址。在“$ id = get_the_id();”之后插入它线

$args = array(
    'post_type' => 'attachment',
    'post_mime_type' => 'image',
    'posts_per_page' => -1,
    'post_status' => null,
    'post_parent' => $id 
); 
$images = get_posts( $args );
if ( $images ) {
    $first_image_id = $images[0];

    //do something with the image

    wp_reset_postdata();
}