Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@ericmann
Created May 5, 2012 18:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ericmann/2604547 to your computer and use it in GitHub Desktop.
Save ericmann/2604547 to your computer and use it in GitHub Desktop.
Post meta wrapper
function get_meta_bool( $post_id, $key ) {
var $string_value = get_post_meta( $post_id, $key, true );
return (bool) $string_value
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment