Skip to content

Instantly share code, notes, and snippets.

@landbryo
Created February 9, 2023 15:16
Show Gist options
  • Save landbryo/465f62116f52cf9f4da7fab2fe7b7872 to your computer and use it in GitHub Desktop.
Save landbryo/465f62116f52cf9f4da7fab2fe7b7872 to your computer and use it in GitHub Desktop.
Register post meta of an array of integers.
<?php
register_post_meta(
'post',
'forage_authors',
[
'type' => 'array',
'description' => 'Additional authors IDs.',
'single' => true,
'sanitize_callback' => null,
'show_in_rest' => [
'schema' => [
'type' => 'array',
'items' => [
'type' => 'number',
],
],
],
]
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment