get_the_post_meta() public static method

Uses the ID of the current post in the loop.
public static get_the_post_meta ( string $name, string $type = null ) : mixed
$name string Custom field name.
$type string Custom field type (optional).
return mixed Meta value.
Example #1
0
 function carbon_get_the_post_meta($name, $type = null)
 {
     return Helper::get_the_post_meta($name, $type);
 }