Recent

wzkb_get_alert filter

wzkb_get_alert

Filter the HTML for alert messages

Type: filter
Since: 2.7.0
Source: includes/functions.php line 139

Parameters

TypeNameDescription
string$htmlHTML for alert messages.
array$argsArguments array.
string$contentContent to wrap in the alert divs.

Usage

add_filter( 'wzkb_get_alert', function($html, $args, $content) {
    // ...
    return $html;
} );