Display all post meta keys and meta values of the same post ID in wordpress

Solution for : Display all post meta keys and meta values of the same post ID in wordpress

Get the meta for all keys:

$meta = get_post_meta($post_id);

Get the meta for a single key:

$key_1_values = get_post_meta( 76, 'key_1' );

For example:

$myvals = get_post_meta($post_id);

foreach($myvals as $key=>$val)
{
    echo $key . ' : ' . $val[0] . '
'; }

For reference: See Codex

No comments:

Post a Comment