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



excerpt_remove_footnotes › WordPress Function

Seit6.3.0
Veraltetn/v
excerpt_remove_footnotes ( $content )
Parameter:
  • (string) $content The content to parse.
    Erforderlich: Ja
Gibt zurück:
  • (string) The parsed and filtered content.
Definiert in:
Codex:

Parses footnotes markup out of a content string, and renders those appropriate for the excerpt.



Quellcode

function excerpt_remove_footnotes( $content ) {
	if ( ! str_contains( $content, 'data-fn=' ) ) {
		return $content;
	}

	return preg_replace(
		'_<sup data-fn="[^"]+" class="[^"]+">\s*<a href="[^"]+" id="[^"]+">\d+</a>\s*</sup>_',
		'',
		$content
	);
}