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 ac417f0 commit 80f1c8fCopy full SHA for 80f1c8f
src/wp-includes/formatting.php
@@ -639,13 +639,19 @@ public function extract_raw_token() {
639
* Retrieves the regular expression for an HTML element.
640
*
641
* @since 4.4.0
642
- * @deprecated {WP_VERSION} Use the HTML API instead.
+ * @deprecated 6.9.0 Use the HTML API instead.
643
644
* @return string The regular expression.
645
*/
646
function get_html_split_regex() {
647
static $regex;
648
649
+ _deprecated_function(
650
+ __FUNCTION__,
651
+ '6.9.0',
652
+ 'Use the HTML API instead.'
653
+ );
654
+
655
if ( ! isset( $regex ) ) {
656
// phpcs:disable Squiz.Strings.ConcatenationSpacing.PaddingFound -- don't remove regex indentation
657
$comments =
0 commit comments