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



apply_shortcodes › WordPress Function

Seit5.4.0
Veraltetn/v
apply_shortcodes ( $content, $ignore_html = false )
Parameter: (2)
  • (string) $content Content to search for shortcodes.
    Erforderlich: Ja
  • (bool) $ignore_html When true, shortcodes inside HTML elements will be skipped. Default false.
    Erforderlich: Nein
    Standard: false
Siehe:
Gibt zurück:
  • (string) Content with shortcodes filtered out.
Definiert in:
Codex:

Searches content for shortcodes and filter shortcodes through their hooks.

This function is an alias for do_shortcode().


Quellcode

function apply_shortcodes( $content, $ignore_html = false ) {
	return do_shortcode( $content, $ignore_html );
}