search_form_format

search_form_format

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

See hook in core

Displaying hooks found in version: wordpress-6.5.2

apply_filters('search_form_format') is found 1 times:

  • /wp-includes/general-template.php line 304
    	 *                       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;