Add below set of code to your functions.php and call it in theme where you want to show meta data.
<?php function get-post_meta($post_id){ global $wpdb; $data = array(); $wpdb->query(" SELECT `meta_key`, `meta_value` FROM $wpdb->postmeta WHERE `post_id` = $post_id "); foreach($wpdb->last_result as $x => $y){ $data[$y->meta_key] = $y->meta_value; }; return $data; } ?> |