search_form_format

search_form_format

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('search_form_format') is found 1 times:

  • /wp-includes/general-template.php line 304
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    *                       Accepts 'html5', 'xhtml'.
     * @param array  $args   The array of arguments for building the search form.
     *                       See get_search_form() for information on accepted arguments.
     */
    $format = apply_filters( 'search_form_format', $format, $args );
     
    $search_form_template = locate_template( 'searchform.php' );
     
    if ( '' !== $search_form_template ) {
        ob_start();
        require $search_form_template;