Created
February 9, 2023 15:16
-
-
Save landbryo/465f62116f52cf9f4da7fab2fe7b7872 to your computer and use it in GitHub Desktop.
Register post meta of an array of integers.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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