Lorsque j'appelle get_search_form()
, il génère:
<form class="search-form">
<meta itemprop="target">
<input type="search">
<input type="submit">
</form>
Mais je voulais que cela génère avec une span
à l'intérieur, comme:
<form class="search-form">
<meta itemprop="target">
<input type="search">
<span class="submit-icon"></span>
<input type="submit">
</form>
Des idées?
Si nous examinons le code source de get_search_form()
, notez qu'avant le rendu du formulaire, le hook de filtre search_form_format
est activé. Nous pouvons l'utiliser pour ajouter un autre filtre attaché à get_search_form
où le rappel dépend du format.
add_filter( 'search_form_format', 'wpse_259716_search_form_format', 99, 1 );
function wpse_259716_search_form_format( $format ) {
if( in_array( $format, array( 'xhtml', 'html5' ) ) ) {
add_filter( 'get_search_form', "wpse_259716_get_search_form_$format", 99, 1 );
}
return $format;
}
function wpse_259716_get_search_form_xhtml( $form ) {
$search = '<input type="submit"';
$xhtml = 'some xhtml';
$replace = $xhtml . $search;
return str_replace( $search, $replace, $form );
}
function wpse_259716_get_search_form_html5( $form ) {
$search = '<input type="submit"';
$html5 = 'some html5';
$replace = $html5 . $search;
return str_replace( $search, $replace, $form );
}
Alternativement, vous pouvez utiliser une approche basée sur les classes.
$wpse_259716 = new wpse_259716();
add_filter( 'search_form_format', array( $wpse_259716, 'search_form_format' ), 99, 1 );
add_filter( 'get_search_form', array( $wpse_259716, 'get_search_form' ), 99, 1 );
class wpse_259716 {
protected $format;
public function search_form_format( $format ) {
return $this->format = $format;
}
public function get_search_form( $form ) {
$search = $replace = '<input type="submit"';
if( 'xhtml' === $this->format ) {
$xhtml = 'some xhtml';
$replace = $xhmtl . $search;
}
elseif( 'html5' === $this->format ) {
$html5 = 'some html5';
$replace = $html5 . $search;
}
return str_replace( $search, $replace, $form );
}
}
Testé et a bien fonctionné.
Ajoutez ce code dans functions.php, vous obtiendrez ce que vous voulez. Vous pouvez maintenant modifier le formulaire de recherche selon vos besoins.
function my_search_form( $form ) {
$form = '<form role="search" method="get" class="search-form" action="' . home_url( '/' ) . '" >
<div><label>
<span class="screen-reader-text"> ' . _x( 'Search for:', 'label' ) .'</span>
<input type="search" class="search-field"
placeholder="' . get_search_query() . '"
value="' . get_search_query().'" name="s"
title="' . esc_attr_x( 'Search for:', 'label' ).' " />
</label>
<span class="submit-icon"></span>
<input type="submit" class="search-submit"
value="' . esc_attr_x( 'Search', 'submit button' ). '" />
</form>
';
return $form;
}
add_filter( 'get_search_form', 'my_search_form', 99 );
echo get_search_form();
Vous devez créer un fichier php nommé searchform.php dans votre thème .. puis copiez et collez le code du formulaire de recherche comme ci-dessous
<form method="get" id="searchform" action="<?php echo esc_url( home_url( '/' ) ); ?>">
<label for="s" class="assistive-text"><?php _e( 'Search', 'theme_text_domain' ); ?></label>
<input type="text" class="field" name="s" id="s" placeholder="<?php esc_attr_e( 'Search', 'theme_text_domain' ); ?>" />
<input type="submit" class="submit" name="submit" id="searchsubmit" value="<?php esc_attr_e( 'Search', 'theme_text_domain' ); ?>" />
</form>
Vous pouvez maintenant modifier le formulaire en supprimant ou en insérant n'importe quoi dans le code ci-dessus.