Solution for : Display all post meta keys and meta values of the same post ID in wordpress
Get the meta for all keys:
1 | $meta = get_post_meta( $post_id ); |
Get the meta for a single key:
1 | $key_1_values = get_post_meta( 76, 'key_1' ); |
For example:
1 2 3 4 5 6 | $myvals = get_post_meta( $post_id ); foreach ( $myvals as $key => $val ) { echo $key . ' : ' . $val [0] . '<br>' ; } |
For reference: See Codex
No comments:
Post a Comment