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 1f16c56 commit e5b6e12Copy full SHA for e5b6e12
src/wp-includes/script-loader.php
@@ -3434,7 +3434,13 @@ function wp_enqueue_command_palette_assets() {
3434
'is_network_admin' => is_network_admin(),
3435
);
3436
3437
- // Only collect text nodes at root level (not wrapped in any HTML tags).
+ /**
3438
+ * Extracts root-level text nodes from HTML string.
3439
+ *
3440
+ * @ignore
3441
+ * @param string $label HTML string to extract text from.
3442
+ * @return string Extracted text content, trimmed.
3443
+ */
3444
$extract_root_text = static function ( $label ) {
3445
if ( '' === $label ) {
3446
return '';
0 commit comments