简体   繁体   English

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

[英]Get first image of custom post type wordpress

I have this code 我有这个代码

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' );

in theory i can solve it placing in the loop 理论上我可以解决它放在循环中

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

but many entries not have a thumbnail (featured images), Can understand? 但是许多条目没有缩略图(特色图像),可以理解吗?

This should retrieve the url of the first image for each post. 这应该为每个帖子检索第一张图片的网址。 Insert it after the "$id=get_the_id();" 将其插入“ $ id = get_the_id();”之后 line 线

$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();
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM