mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
https://make.wordpress.org/core/2022/05/03/block-editor-miscellaneous-dev-notes-for-wordpress-6-0/
8 lines
350 B
Text
8 lines
350 B
Text
function wporg_enable_post_comments_legacy_block( $metadata ) {
|
|
if ( 'core/post-comments' === $metadata['name'] ) {
|
|
$metadata['title'] = esc_html__( 'Post Comments', 'textdomain' );
|
|
$metadata['supports']['inserter'] = true;
|
|
}
|
|
return $metadata;
|
|
}
|
|
add_filter( 'block_type_metadata', 'wporg_enable_post_comments_legacy_block' );
|