summaryrefslogtreecommitdiffstatshomepage
path: root/src/wp-includes/rest-api/fields/class-wp-rest-user-meta-fields.php
blob: 2e25c7e4e409a2ba5f5bd065939dbda63b43732f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php

class WP_REST_User_Meta_Fields extends WP_REST_Meta_Fields {
	/**
	 * Get the object type for meta.
	 *
	 * @return string
	 */
	protected function get_meta_type() {
		return 'user';
	}

	/**
	 * Get the type for `register_rest_field`.
	 *
	 * @return string
	 */
	public function get_rest_field_type() {
		return 'user';
	}
}