//썸네일 주소 출력
function post_thumbnail_src() {
global $post;
if ($values = get_post_custom_values("thumb")) { //커스텀 도메인 이미지 주소 출력
$values = get_post_custom_values("thumb");
$post_thumbnail_src = $values [0 ];
} elseif (has_post_thumbnail()) { //추천 썸네일이 있으면 썸네일 주소 출력
$thumbnail_src = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), '전체');
$post_thumbnail_src = $thumbnail_src [0];
} else {
$post_thumbnail_src = '';
};
echo $post_thumbnail_src;
}