Recent

wzkb_search_block_form filter

wzkb_search_block_form

Filters the search form output for the block.

Type: filter
Since: 3.0.0
Source: includes/blocks/class-blocks.php line 686

Parameters

TypeNameDescription
string$formSearch form HTML.
array$attributesBlock attributes.

Usage

add_filter( 'wzkb_search_block_form', function($form, $attributes) {
    // ...
    return $form;
} );