Como remover a barra de pesquisa de um tema WordPress?
-
-
Onde é localizada abarra depesquisa?Nabarra lateral,cabeçalho,rodapé?Qualtema vocêestá usando?Where is the search bar located? In the sidebar, header, footer? Which theme are you using?
- 0
- 2012-12-21
- shea
-
3 respostas
- votos
-
- 2010-10-07
Se o campo depesquisaforimplementado como um widget,issopode serfeito através dainterface de administração.Bastanavegarpara a aparência> Widgetse arraste o widget depesquisa da área do widgetpara opainel "Widgets disponíveis".
Se o campo depesquisaestiver codificado com otema,pode sermaisfácileditar o CSSem vez do HTMLe PHP.Veja como:
- Use firebug ou umaferramenta semelhantepara localizar oelemento div contendo o código depesquisa.
- no arquivo CSS dotema (provavelmenteestilo.css),adicione
display: none
paraesse div.Éisso!
Esta é uma abordagemminimamenteinvasiva.Se você quiser reativar abarra depesquisa,basta remover o display
display: none
Declaração do seu 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.-
Obrigado,será uma ótimaideia.Eu só vouimplementá-lo.Thanks, it will be great idea. I am just going to implement it.
- 0
- 2010-10-10
- Himanshu Vyas
-
@kylan +1para aideia de CSS.Isto éespecialmente ótimoparatemasinfantis que sãofeitos apenas de um arquivo: `estilo.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
- .
-
Tente localizar o HTML que representa abarra depesquisa.
-
então localizeem que os arquivos dotema queele reside (elepode ser definidoem vários arquivos - single.php,página.php,..)
-
Remova amarcação,incluindo a chamada PHP detodos os arquivos.
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
Vocêpodeencontrá-lono cabeçalho.phpe apenasexcluí-lo ou usar o atributo CSS "Display: Nenhum" .get_search_form () Método representa abarra depesquisa.
<?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; ?>
Como remover abarra depesquisa de umtema WordPress?