View Single Post
Old 02-29-2012, 12:38 PM  
Brujah
Beer Money Baron
 
Brujah's Avatar
 
Industry Role:
Join Date: Jan 2001
Location: brujah / gmail
Posts: 22,157
The Codex link for get_post_meta, get_the_post_thumbnail:
http://codex.wordpress.org/Function_.../get_post_meta
http://codex.wordpress.org/Function_...post_thumbnail

Something like this probably:
Code:
if ( $my_thumb = get_post_meta($post->ID, 'thumb', true) )
{
	// $my_thumb contains your value
}
elseif ( $my_thumb = get_the_post_thumbnail($post->ID, 'thumbnail') )
{
	// $my_thumb contains your value
}
else
{
	// display the placeholder image
}
__________________
Brujah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote