wpseek.com
Outil de recherche WordPress pour les développeurs et auteurs de thèmes



_filter_block_content_callback › WordPress Function

Depuis6.2.1
Dépréciéen/a
_filter_block_content_callback ( $matches )
Accès:
  • private
Paramètres:
  • (array) $matches Array of preg_replace_callback matches.
    Requis: Oui
Retourne:
  • (string) Replacement string.
Défini(e) dans:
Codex:

Callback used for regular expression replacement in filter_block_content().



Source

function _filter_block_content_callback( $matches ) {
	return '<!--' . rtrim( $matches[1], '-' ) . '-->';
}