Uses
Uses | Description |
---|---|
wp-includes/class-wp-hook.php: WP_Hook::has_filters() | Checks if any callbacks have been registered for this hook. |
wp-includes/plugin.php: _wp_filter_build_unique_id() | Build Unique ID for storage and retrieval. |
Checks if a specific action has been registered for this hook.
(string) (Optional) The name of the filter hook.
Default value: ''
(callable|bool) (Optional) The callback to check for.
Default value: false
(bool|int) The priority of that hook is returned, or false if the function is not attached.
File: wp-includes/class-wp-hook.php
public function has_filter( $tag = '', $function_to_check = false ) { if ( false === $function_to_check ) { return $this->has_filters(); } $function_key = _wp_filter_build_unique_id( $tag, $function_to_check, false ); if ( ! $function_key ) { return false; } foreach ( $this->callbacks as $priority => $callbacks ) { if ( isset( $callbacks[ $function_key ] ) ) { return $priority; } } return false; }
Version | Description |
---|---|
4.7.0 | Introduced. |
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/wp_hook/has_filter