post_type = $post_type; } /** * Get the object type for meta. * * @return string */ protected function get_meta_type() { return 'post'; } /** * Get the type for `register_rest_field`. * * @return string Custom post type slug. */ public function get_rest_field_type() { return $this->post_type; } }