wordpress get all meta fields of post code example
Example: how to get all post fields in wordpress
echo '<pre>';
print_r(get_post_custom($post_id));
echo '</pre>';
echo '<pre>';
print_r(get_post_custom($post_id));
echo '</pre>';