We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0ee469 commit 48cb687Copy full SHA for 48cb687
src/wp-includes/comment.php
@@ -4110,11 +4110,11 @@ function _wp_check_for_scheduled_update_comment_type() {
4110
}
4111
4112
/**
4113
- * Register notes metadata for notes status.
+ * Register initial comment meta.
4114
*
4115
* @since 6.9.0
4116
*/
4117
-function wp_register_notes_metadata() {
+function wp_create_initial_comment_meta() {
4118
register_meta(
4119
'comment',
4120
'_wp_note_status',
@@ -4134,4 +4134,4 @@ function wp_register_notes_metadata() {
4134
)
4135
);
4136
4137
-add_action( 'init', 'wp_register_notes_metadata' );
+add_action( 'init', 'wp_create_initial_comment_meta' );
0 commit comments