Created
January 4, 2017 22:45
-
-
Save ramiabraham/38358b0f9b073b61242cab99e8c9571c to your computer and use it in GitHub Desktop.
get_post_meat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Wrapper for get_post_meta | |
* @see get_post_meta | |
*/ | |
function get_post_meat( int $post_id, $key = '', bool $single ) { | |
return get_post_meta( $post_id, $key, $single ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment