This is a hook which is used (internally) to 'activate' filter validation.
filter archives
This is our selection of topics, tagged "filter".
b3_new_wpmu_user_subject_admin()
With this filter you can override the subject of the email sent to administrator(s) when a new (multisite) user registers.
b3_new_site_created_message()
With this filter you can override the default "New site created" email message.
b3_disable_action_links()
Disable the action links shown below a custom form.
How can I stop a filter from outputting the default ?
You can either set a custom value through the admin or create a filter and return it false.
Validation of custom filters
The hooks we defined in the plugin, which are meant to hook your own output to, do not get checked on each load. You can however test them [...]