Os widgets são uma parte tão integrante dos temas do WordPress que é difícil imaginar um tema do WordPress sem widgets. Os widgets são scripts executáveis que você pode simplesmente arrastar e soltar em suas barras laterais ou em qualquer outra área pronta para widgets em seu tema. Muitos de nossos leitores utilizam widgets para adicionar elementos personalizados à barra lateral. No entanto, este artigo é para os usuários curiosos que desejam saber como adicionar barras laterais dinâmicas prontas para widgets ou áreas prontas para widgets nos temas do WordPress.
Registro de barras laterais ou áreas prontas para widgets no WordPress
A primeira coisa que você precisa fazer é registrar sua barra lateral ou área pronta para widget no seu tema. Você pode registrar várias barras laterais e áreas prontas para widgets. Copie e cole este código no arquivo functions.php do seu tema
function wpb_widgets_init() { register_sidebar( array( 'name' => __( 'Main Sidebar', 'wpb' ), 'id' => 'sidebar-1', 'description' => __( 'The main sidebar appears on the right on each page except the front page template', 'wpb' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); register_sidebar( array( 'name' =>__( 'Front page sidebar', 'wpb'), 'id' => 'sidebar-2', 'description' => __( 'Appears on the static front page template', 'wpb' ), 'before_widget' => '<aside id="%1$s" class="widget %2$s">', 'after_widget' => '</aside>', 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>', ) ); } add_action( 'widgets_init', 'wpb_widgets_init' );
Nesse código, registramos duas barras laterais. Demos a elas nomes e descrições para identificá-las na tela Widgets. O parâmetro description pode ser usado para informar aos usuários onde essa barra lateral aparece no tema. O parâmetro wpb é o nome do tema em que estamos trabalhando e é usado aqui para tornar essas strings traduzíveis. Você deve substituí-lo pelo nome do seu tema.
Adição de barras laterais dinâmicas prontas para widgets nos arquivos de tema do WordPress
Até o momento, registramos apenas as barras laterais dinâmicas. Os usuários podem arrastar e soltar widgets nessas barras laterais na tela Appearance ” Widgets. Entretanto, essas barras laterais não aparecerão em seu site até que sejam chamadas em um modelo como sidebar.php
ou em qualquer outro lugar em que você queira exibi-las. Para adicionar essas áreas de widgets, edite o arquivo de modelo onde você deseja exibi-los e cole este código:
<?php if ( is_active_sidebar( 'sidebar-1' ) ) : ?> <div id="secondary" class="widget-area" role="complementary"> <?php dynamic_sidebar( 'sidebar-1' ); ?> </div> <?php endif; ?>
Neste código de exemplo, usamos o id da barra lateral para chamar a barra lateral que queremos exibir aqui. Altere o id da barra lateral para exibir outra barra lateral. Por exemplo, você pode registrar três barras laterais para a área do rodapé e, em seguida, chamá-las uma a uma no modelo footer.php
do seu tema.
Os widgets podem ser muito poderosos. Você pode adicionar widgets ao conteúdo de seus posts e páginas, tornar seus widgets de texto coloridos ou ampliar o poder dos widgets padrão do WordPress. As barras laterais prontas para widgets posicionadas corretamente permitem que os usuários adicionem elementos personalizados aos seus sites usando uma interface simples de arrastar e soltar.
Esperamos que este artigo tenha ajudado você a aprender como adicionar barras laterais dinâmicas prontas para widgets no WordPress. Recomendamos que você estude o código em estruturas de temas como o Genesis para saber como os profissionais os utilizam em seus produtos. Para perguntas e comentários, deixe um comentário abaixo.
Syed Balkhi
Hey WPBeginner readers,
Did you know you can win exciting prizes by commenting on WPBeginner?
Every month, our top blog commenters will win HUGE rewards, including premium WordPress plugin licenses and cash prizes.
You can get more details about the contest from here.
Start sharing your thoughts below to stand a chance to win!
nabil
hi i need two column in side bar ! how can i do that whit css
Jason
Where can i extend the functionality of my wordpress widgets
Milada
Hallo team again,
sorry to trouble you, but I would like to specify, that I would need one widget above the themes current Primary Sidebar widget on the right and the other widget on the left side from the article in the middle.
How should I proceed?
Thank you,
Milada
Milada
Hallo team again,
how do I add a field in the widget and which and where do I paste a field code to have there affiliate links?
Thank you,
Milada
Tanmay Bala
i want to learn how to use DB Plugin in wordpress and redux framework.
Marc
This tutorial was a great help.
Been trying to accomplish this for about a week now.
Nice and to-the-point.
Thank you!
Laura
I just wondered, before I actually paste the code, does this work on a theme that originally doesn’t come with a sidebar? I’m using Book Lite which only has footers.
WPBeginner Support
Yes, it does.
Administrador
Laura
Thanks so far – I tried to register the sidebar but whenever I hit “save” I get the white screen of death – which I never had before. Any suggestions what could be wrong?
Lohith
Thanks Alot
Its really wonderful and simple method to explain….
Bakopu
Thank you very very much sir. Where are you sir , we want to take your blessings by touching your feet.
akhilesh
thanks sir these post have vry helpful for me
Marcos Nakamine
Worked perfectly
Thanks
gWorldz
I am having trouble getting the widget to display o.O
The widget is registering and displaying in the back-end properly with no issues, however, it will only show my widget content if I include content in the previous widget.
I’m using a 2011 child theme and registering an additional footer area.
functions.php snippet:
https://gist.github.com/gWorldz/76273b5901e1b5c4759b#file-functions-php
sidebar-footer.php
https://gist.github.com/gWorldz/b6177ccc9734718dd636#file-sidebar-footer-php
style.css
https://gist.github.com/gWorldz/0f24a9350da164ee2f29#file-style-css
Do you have any idea what I’m doing wrong or what is causing this issue?
Tiger
Did you ever get any help on this? I am having the same issue.
MJ
Just wanted to say thanks for this. I Googled to find out how to register a sidebar in WordPress, and hit a few other sites before this one, and yours had the best, clearest, most understandable directions. Well done.
arvind
your post is helpful to me,
thanks !!!!!!
Dharmendra Prajapati
Finally i got my dynamic widget ready sidebar after 23 days… I was googled all the sites.. and finally i redirected @ your site.
Thanks
Kevin
In the second snippet, where you are inserting the widget code into the template, where you have
div id=”secondary”
Should that id change with each widget area.
Ex:
First, Secondary, Third, fourth, etc
WPBeginner Support
Kevin yes you should, and it should be named after the widget area or the sidebar it is representing.
Administrador
SS
Works for registering the sidebars but when I go to the Appearance » Widgets screen I see all my widgets but nothing to drag them into.
WPBeginner Support
SS, when you have successfully registered a dynamic widget ready sidebar it will appear on Widgets screen. This means that registering sidebars probably didn’t work.
Administrador
Steve Smart
Hi –
This is a very helpful post. Thankyou!
I’ve been successful using one dynamic widget area, now I’m trying to implement more than one. Everything seems to work as expected, except an odd problem in the dashboard. If I drag a text widget to my second dynamic widget area I can add content as you would expect, and save it, and it produces output on my pages as expected, however if I now revisit the dashboard widgets page, the second widget area does not appear to contain any widgets.
I am using a twentytwelve-child theme, and Wordpress 3.7.1.
Any thoughts?
Jackson
Hearty thanks….You have done such a wonderful work…thanks thanks thanks…
JP
thanks, found this useful. right to the point.
Praveen Prasad
Can you tell me where is the Call Function Started ?
Ed Du
You can also use Headway with a additional block and it will take care of all of this. Or pagelines for that matter.