Skip to content

Instantly share code, notes, and snippets.

@rbk
Last active June 29, 2016 20:16
Show Gist options
  • Select an option

  • Save rbk/09051c720e2d3fccd0e04b2a9a482065 to your computer and use it in GitHub Desktop.

Select an option

Save rbk/09051c720e2d3fccd0e04b2a9a482065 to your computer and use it in GitHub Desktop.
WordPress - Get all post metadata as a nice object that is easier to work with
<?php
function get_post_meta_object( $id ) {
$object = new stdClass();
$meta = get_post_meta( $id );
foreach( $meta as $key => $value ) {
$object->{$key} = $value[0];
}
return $object;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment