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



balancetags › WordPress Function

Seit0.71
Veraltetn/v
balancetags ( $text, $force = false )
Parameter: (2)
  • (string) $text Text to be balanced
    Erforderlich: Ja
  • (bool) $force If true, forces balancing, ignoring the value of the option. Default false.
    Erforderlich: Nein
    Standard: false
Gibt zurück:
  • (string) Balanced text
Definiert in:
Codex:

Balances tags if forced to, or if the 'use_balanceTags' option is set to true.



Quellcode

function balanceTags( $text, $force = false ) {  // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.FunctionNameInvalid
	if ( $force || (int) get_option( 'use_balanceTags' ) === 1 ) {
		return force_balance_tags( $text );
	} else {
		return $text;
	}
}