wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



convert_chars › WordPress Function

Seit0.71
Veraltetn/v
convert_chars ( $content, $deprecated = '' )
Parameter: (2)
  • (string) $content String of characters to be converted.
    Erforderlich: Ja
  • (string) $deprecated Not used.
    Erforderlich: Nein
    Standard: (leer)
Gibt zurück:
  • (string) Converted string.
Definiert in:
Codex:

Converts lone & characters into `&` (a.k.a. `&`)



Quellcode

function convert_chars( $content, $deprecated = '' ) {
	if ( ! empty( $deprecated ) ) {
		_deprecated_argument( __FUNCTION__, '0.71' );
	}

	if ( str_contains( $content, '&' ) ) {
		$content = preg_replace( '/&([^#])(?![a-z1-4]{1,8};)/i', '&$1', $content );
	}

	return $content;
}