Comment supprimer la barre de recherche d'un thème wordpress?
-
-
Où setrouve labarre de recherche?Dans labarre latérale,en-tête,pied depage?Quelest lethème que vous utilisez?Where is the search bar located? In the sidebar, header, footer? Which theme are you using?
- 0
- 2012-12-21
- shea
-
3 réponses
- votes
-
- 2010-10-07
Si le champ de rechercheestimplémenté sousforme de widget,celapeut êtrefait via l'interface d'administration.Accédez simplement à Apparence> Widgetset faitesglisser le widget de recherche de la zone des widgets vers le volet "Widgets disponibles".
Si le champ de rechercheest codéen dur dans lethème,ilpeut êtreplusfacile d'éditer le CSSplutôt que le HTMLet PHP.Voici comment:
- Utilisez Firebug ou un outil similairepour localiser l'élément DIV contenant le code de recherche.
- Dans lefichier CSS duthème (probablement style.css),ajoutez
display: none
à cette DIV.Voilà!
Il s'agit d'une approchepeuinvasive.Si vous souhaitez réactiver labarre de recherche,supprimez simplement l'instruction
display: none
de votre CSS.If the search field is implemented as a widget, this can be done via the administration interface. Just navigate to Appearance > Widgets and drag the search widget from the widget area to the "Available Widgets" pane.
If the search field is hard-coded into the theme, it might be easier to edit the CSS rather than the HTML and PHP. Here's how:
- Use Firebug or a similar tool to locate the DIV element containing the search code.
- In the theme's CSS file (probably style.css), add
display: none
to that DIV. That's it!
This is a minimally invasive approach. If you ever want to re-enable the search bar, just remove the
display: none
statement from your CSS.-
Merci,ce sera uneexcellenteidée.Je vais simplement lemettreen œuvre.Thanks, it will be great idea. I am just going to implement it.
- 0
- 2010-10-10
- Himanshu Vyas
-
@kylan +1pour l'idée CSS.Ceciestparticulièrement utilepour lesthèmesenfants constitués d'un seulfichier: `style.css`.@kylan +1 for the CSS idea. This is especially great for child themes which are made of one file only: `style.css`.
- 0
- 2012-02-01
- ef2011
-
- 2010-10-07
-
Essayez de localiser le code HTML représentant labarre de recherche.
-
Recherchezensuite dans quelsfichiers dethèmeil réside (ilpeut être défini dansplusieursfichiers - single.php,page.php,..)
-
Supprimez lebalisageincluant l'appelphp detous lesfichiers.
Try to locate the HTML representing the search bar.
Then find in which theme files it resides (it may be defined in multiple files - single.php, page.php,..)
Remove the markup including the php call from all the files.
-
- 2013-02-17
Vouspouvez letrouver sur header.phpet simplement le supprimer ou utiliser l'attribut CSS "display:none" .Laméthode get_search_form () représente labarre de recherche.
<?php // Has the text been hidden? if ( 'blank' == get_header_textcolor() ) : ?> <div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>"> <?php get_search_form(); ?> </div> <?php else : ?> <?php get_search_form(); ?> <?php endif; ?>
You can find it at header.php and just delete it or use CSS attribute "display:none". get_search_form() method represents Search Bar.
<?php // Has the text been hidden? if ( 'blank' == get_header_textcolor() ) : ?> <div class="only-search<?php if ( $header_image ) : ?> with-image<?php endif; ?>"> <?php get_search_form(); ?> </div> <?php else : ?> <?php get_search_form(); ?> <?php endif; ?>
Comment supprimer labarre de recherche d'unthème wordpress?