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



current_filter › WordPress Function

Seit2.5.0
Veraltetn/v
current_filter ( Keine Parameter )
Gibt zurück:
  • (string) Hook name of the current filter.
Definiert in:
Codex:

Retrieves the name of the current filter hook.



Quellcode

function current_filter() {
	global $wp_current_filter;

	return end( $wp_current_filter );
}