In this tutorial I will explain about 4 column widgetized footer. I already explain about 3 widgetized footer. In thesis theme, you can set your widgets easy. Here, this is widgetized footer for 4 columns. There is no restriction to add number of widgets in any columns. In thesis theme customization, by using widgetized footer you can simply drag and drop your widgets at any time.
Watch this video tutorial below:
Add this code to custom_functions.php
Use FTP path or go to custom file editor and paste this below code.
/*-----------------------------------------*/
/* register sidebars for widgetized footer */
if (function_exists('register_sidebar')) {
$sidebars = array(1, 2, 3, 4);
foreach($sidebars as $number) {
register_sidebar(array(
'name' => 'Footer ' . $number,
'id' => 'footer-' . $number,
'before_widget' => '',
'after_widget' => '',
'before_title' => '<h3>',
'after_title' => '</h3>'
));
}
}
/*-----------------------*/
/* set up footer widgets */
function widgetized_footer1() {
?>
<div id="footer_setup">
<div class="footer_items">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 1') ) : ?>
<?php endif; ?>
</div>
<div class="footer_items">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 2') ) : ?>
<?php endif; ?>
</div>
<div class="footer_items">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 3') ) : ?>
<?php endif; ?>
</div>
<div class="footer_items">
<?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar('Footer 4') ) : ?>
<?php endif; ?>
</div>
</div>
<?php
}
add_action('thesis_hook_footer','widgetized_footer1');
Now go to wordpress admin panel and click Appearance then select widgets.
In the right side you will see Footer 1, 2, 3, and 4.
Add this code into custom.css
/* CUSTOM.CSS */
.custom #footer {
border-top:2em solid #9c9c9c;
background: #eeeeee;
padding:0em;
text-align:center;
}
.custom #footer a{
border-bottom: 1px none #cccccc;
}
/* footer widget area setup */
#footer_setup {
background: #444343;
padding:1.5em;
margin-bottom: 25px;
overflow: hidden;
}
/* widget item setup */
#footer_setup .footer_items {
text-align: left;
width: 24.5%;
padding-right: 0px;
color: #2361A1;
display: inline-block;
float: left;
height: 100%;
}
/* widget item headers */
#footer_setup .footer_items h3 {
font-size: 1.5em;
font-weight: bold;
text-transform: uppercase;
letter-spacing: 0px;
color: #ffffff;
padding-bottom: 3px;
border-bottom: 3px none #ffdf00;
margin-bottom: 5px;
}
/* do not change these! */
#footer_setup .footer_items ul li { list-style:none;
font-size:1.4em;
line-height:1.5em;
}
#footer_setup .footer_items ul { margin: 1em; padding: 0px; }
Now Go to widgets in admin panel then drag and drop your widgets into left column and click save. For e.g. in Footer 1 you can add 1, 2, or more widgets into first column but it will appear one after the another. The same thing is happened for all Footer.
see the screenshot below:
Share your experience in comment section.
Related Tutorials:










{ 16 comments… read them below or add one }
I can’t understand why it was not working for me in Thesis 1.6
once again you can do the same process. If you got problem again contact via g-talk.
It Worked. Thanks.
Great tutorial. I for the life of me can’t find the CSS code to change my link color. I’ve tried
#footer_setup .footer_items a:active{}
#footer_setup .footer_items ul :active{}
#footer_setup .footer_items ul li a:active{}
Can you offer any tips? Thanks!
#footer_setup .footer_items ul a { color:#111}
#footer_setup .footer_items ul a:hover { color:#ff0000}
copy this code and paste in custom.css. as per your wish you can change the color code.
Finally, i can add 4 widgetized footer to my thesis. Thank you very much. And one interesting thing i could not add 3 widgetized footer.
You can look here: http://www.bestofblogger.net
i saw your site, your footer looking great.
Thank you very much
It is very nice to find a WordPress “how-to” article that actually works. Thanks very much this was helpful and I have my 4 column footer widgets now!
Chris
hai christopher,
you will get more thesis customization tutorials in our youtube channel
Hi there,
I am so glad I found this website, thank you for all your tips.
They are excellent. Congratulations on your beautiful site.
Keep the tips coming.
Cheers,
Aman
Hi Aman, Thanks for making use of our all thesis & blogging tips.
Hi, nice tutorial. By the way I’m having a problem though. It works but how do I move the copyright note under the footer?
Here is my site :http://www.myphotoshopdesign.com
Hi! pascal,
How do i restrict the four column widget to show up only on the index page of the site. What do I need to chnage in the code you mentioned above for the custom_functions.php file
Look forward to your reply
Thanks for your great tips.
i will do any single thesis theme customization issue for $5. if it is ok for you, i will send my paypal id after paying money, give your site details i will do it.
It doesn’t work for me! All the widgets show on top of each other and not side by side. I am just sick of trying to add a footer to my blog. No one of them work! I liked your concept of adding 4 different footers but sadly it doesn’t work for me and I cant figure out wats wrong
{ 1 trackback }