Skip to content

Instantly share code, notes, and snippets.

@gh640
Last active August 30, 2024 05:16
Show Gist options
  • Save gh640/0b64cc8e7971dce933dba64fa9ccfe28 to your computer and use it in GitHub Desktop.
Save gh640/0b64cc8e7971dce933dba64fa9ccfe28 to your computer and use it in GitHub Desktop.
WordPress: Block Bindings API block samples
<?php
add_action( 'init', function () {
register_meta(
'post',
'book-genre',
[
'show_in_rest' => true,
'single' => true,
'type' => 'string',
'default' => 'Default text field',
]
);
register_meta(
'post',
'book-author',
[
'show_in_rest' => true,
'single' => true,
'type' => 'string',
'default' => 'Default text field',
]
);
} );
~
<!-- wp:paragraph {
"metadata":{
"bindings":{
"content":{
"source":"core/post-meta",
"args":{
"key":"book-genre"
}
}
}
}
} -->
<p></p>
<!-- /wp:paragraph -->