$post){
$link=get_post_meta($post->ID, PEXETO_CUSTOM_PREFIX.'image_link', true);
$description=get_post_meta($post->ID, PEXETO_CUSTOM_PREFIX.'description', true);
$imgurl=get_post_meta($post->ID, PEXETO_CUSTOM_PREFIX.'image_url', true);
$title=get_post_meta($post->ID, PEXETO_CUSTOM_PREFIX.'imgtitle', true);
$showDesc=false;
if($description || $link || $title){
$showDesc=true;
}
if(get_opt('_accord_auto_resize')=='on'){
$path=pexeto_get_resized_image($imgurl, 700, 400);
}else{
$path=$imgurl;
}
echo('

');
if($showDesc){
echo('
');
if($title) echo ('
'.stripslashes($title).'
');
if($description) echo ('
'.stripslashes($description).'
');
if($link) echo ('
'.get_opt('_learn_more').'');
echo('
');
}
echo('
');
}
?>