How to get WordPress post featured image URL

前端 未结 20 2207
闹比i
闹比i 2020-12-02 04:59

I am using this function to get the featured images:


    
         


        
20条回答
  •  余生分开走
    2020-12-02 05:17

    Simply inside the loop write as shown below:-

    $args=array('post_type' => 'your_custom_post_type_slug','order' => 'DESC','posts_per_page'=> -1) ;
    $the_qyery= new WP_Query($args);
    
    if ($the_qyery->have_posts()) :
        while ( $the_qyery->have_posts() ) : $the_qyery->the_post();?>
    
    
    Post

提交回复
热议问题