Please find below plugin to add magic fields to the posts or custom posts
https://wordpress.org/plugins/magic-fields-2/
<?php
/* Get custom fields */
$custom_fields = get_post_custom($post->ID);
/* Get “designation” single field */
echo $custom[‘designation’][0];
?>