function image_post($key, $width, $height) { global $post; $custom_field = get_post_meta($post->ID, $key, true); $title = get_the_title(); $template_url = get_bloginfo('template_directory') ; if($custom_field) { //if the user set a custom field echo ''; } else { //else, return return; } } ?>