Skip to content

Instantly share code, notes, and snippets.

View johnstile's full-sized avatar

John Stile johnstile

View GitHub Profile
function register_meta_company() {
$args = array(
'type' => 'string',
'description' => 'Company',
'single' => true,
'show_in_rest' => true,
);
register_meta( 'user', 'company', $args );
}
add_action( 'rest_api_init', 'register_meta_company');