How to get listing thumbnail?
-
Hi! I am trying to display a thumbnail / logo. How to do this in wp_query?
$args= array( 'post_type' => 'w2dc_listing', ); $loop = new WP_Query($args); while($loop->have_posts()): $loop->the_post(); $meta_value = get_post_meta( get_the_ID() , 'attached_image_as_logo', true ); echo $meta_value; endwhile; wp_reset_query();
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘How to get listing thumbnail?’ is closed to new replies.