WP_REST_Post_Meta_Fields::get_meta_type() protected WP 4.7.0
Retrieves the object meta type.
{} It's a method of the class: WP_REST_Post_Meta_Fields{}
No Hooks.
Return
String. The meta type.
Usage
// protected - for code of main (parent) or child class $result = $this->get_meta_type();
Changelog
Since 4.7.0 | Introduced. |
Code of WP_REST_Post_Meta_Fields::get_meta_type() WP REST Post Meta Fields::get meta type WP 5.6
protected function get_meta_type() {
return 'post';
}