"; $post = get_post( $attached_post ); /* Call the metabox here */ $title = get_post_meta( get_the_ID(), 'agent_title', true ); $tel = get_post_meta( get_the_ID(), 'agent_telephone', true ); $mobile = get_post_meta( get_the_ID(), 'agent_mobile', true ); $email = get_post_meta( get_the_ID(), 'agent_email', true ); $address = get_post_meta( get_the_ID(), 'agent_address', true ); the_post_thumbnail('medium'); /* * Displays or returns the title of the current post * codex: https://codex.wordpress.org/Function_Reference/the_title */ echo '
'; the_title("

","

"); if(!empty( $title )) { echo "" . $title . ""; } echo "
"; } ?>