WP_REST_Comment_Meta_Fields::get_meta_subtype() protected WP 4.9.8
Retrieves the object meta subtype.
{} It's a method of the class: WP_REST_Comment_Meta_Fields{}
No Hooks.
Return
String. 'comment' There are no subtypes.
Usage
// protected - for code of main (parent) or child class $result = $this->get_meta_subtype();
Changelog
Since 4.9.8 | Introduced. |
Code of WP_REST_Comment_Meta_Fields::get_meta_subtype() WP REST Comment Meta Fields::get meta subtype WP 5.6
protected function get_meta_subtype() {
return 'comment';
}