How to Add Widgets to WordPress Theme’s Footer

Using WordPress can at times be difficult, but that is why it is good to know tricks like how to add widgets to WordPress theme’s footer. This is helpful because you can add in what you need to enhance the look for your blog and site.

When you are looking how to add widgets to WordPress theme’s footer, the process is actually a lot more simple than it seems. Especially for those new to WordPress, learning how to add widgets to a WordPress theme footer can seem difficult, but you can just follow these instructions for help.

This is an important lesson for just about anyone new to WordPress, or for those trying new WordPress tricks on their WordPress website or blog. Many WordPress users will take advantage of the many unique tools WordPress has to offer including widgets, which can add a fun and creative aspect to any blog or website. There are also ways to add some of these widgets so that they appear in the footer of the WordPress theme to appear on every page as a built in part of the theme. There are several reasons to consider using WordPress widgets in the footer of the theme including ease of use for your website visitors. In many cases, these helpful tools are there to guide your website visitors, which in turn will make them more likely to come back and check out your site more often!

With widgets in the footer of the WordPress theme, you can use this tool to lead your reader to enticing comments, or other sections of the site they might like to explore. If you are using a blog in addition to a website, you can use this widget to help direct your readers back over to the website where you will have more information or even possibly online products and services available for purchase. If you are using your blog and website to make money online, using a footer widget is a great way to enhance your online business and make more money.

How to Add Widgets to WordPress Theme’s Footer:

In the first step, it is a good idea to decide on the widget positions, choosing about three total. You can use the theme editor of  your current theme to add in an extra line of the code to the functions.php file. Adding in the coding from the widget  you can choose online or through a third-party designer. You can add just about any widget you want to at this point. Depending on the look and style you are going for with teh overall look of your WordPress blog or website, you can find a cheap or easily free WordPress widget to add to the footer of your site.  By styling the new footer division by adding a set style (adjusted how you see fit) you can change the look and appearance of the WordPress footer on your website.

However, it is also important to note that while you have the ability to change around the type of widget you want to add to your WordPress footer in your theme, you can also add in a specific footer widget to your WordPress theme. Many themes might even have a WordPress theme footer already included. However, that is not always the case and if you want to add one, you are going to have to know how to add in a specific footer to your WordPress theme.

Copy and paste this in the functions.php folder and be sure to do so just before: ?>.

register_sidebar(array(
‘name’ => ‘Custom footer’,
‘before_widget’ => ‘<div id=”%1$s”>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2>’,
‘after_title’ => ‘</h2>’,
));
After you do this, you are going to have to register the footer widgets in  your theme copy and paste it inside your footer.php file before the footer code starts. Add in:
<div id=”customfooter”>
<?php if ( !function_exists(‘dynamic_sidebar’) ||
!dynamic_sidebar(‘Custom footer’) ) ?>
</div>
</div>
To finish up, copy this code below and put it inside your style sheet (style.css):
#recent-posts{margin-bottom:1em;}
#recent-posts ul{list-style:none outside none;padding-left:15px;line-height:14px;}
#recent-posts ul li{margin-bottom: 1px;height:46px;}
#recent-posts img{border: solid 1px #D52300;float:left;}
#recent-post-content{float:right; width: 280px;font-size:12px;}
Now you can easily open your widgets page and drag the widgets from here to your newly created footer widgets. This process will activate them for use on your site.