Quantcast
Channel: help – WordPress.org Forums
Viewing all articles
Browse latest Browse all 13924

alchymyth on "Help with Featured slider Pioneer Theme"

$
0
0

this is the function:

# Displays post image attachment (sizes: thumbnail, medium, full)
function dp_attachment_image($postid=0, $size='thumbnail', $attributes='') {
	$the_query = new WP_Query(array('p'=>$postid));
	$the_query->the_post();
	the_post_thumbnail($size);
	wp_reset_postdata();
}

which is basically a wrapper for 'the_post_thumbnail()'

do your posts have the 'featured image' ?


Viewing all articles
Browse latest Browse all 13924

Trending Articles