X

How To Create a Custom Sidebar for the Home Page

Snippets by IsItWP

Are you looking for a way to load a custom sidebar just for the home page? While there’s probably a plugin for this, we have created a quick code snippet that you can use to create a custom sidebar for the home page in WordPress.

Instructions:

Replace the default get_sidebar(); function in your WordPress theme with this snippet to load a custom sidebar for the home page. Be sure to name your new sidebar file sidebar-home.php.

<?php
     if ( is_home() ) :
              get_sidebar('home');
     else :
              get_sidebar();
     endif;
?>

Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.

If you liked this code snippet, please consider checking out our other articles on the site like: 7 Best WordPress Landing Page Plugins That Convert and how to create a contact form in WordPress.

Comments   Leave a Reply

  1. Tweets that mention Wordpress Custom sidebar for home page – wpsnipp.com Wordpress code snippets for your blog -- Topsy.com February 11, 2011 at 4:15 pm

    […] This post was mentioned on Twitter by HN Firehose, newsery3. newsery3 said: WordPress custom sidebar for home page – http://bit.ly/f3kVDR – [Hacker News FH] […]

Add a Comment

We're glad you have chosen to leave a comment. Please keep in mind that all comments are moderated according to our privacy policy, and all links are nofollow. Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

WordPress Launch Checklist

The Ultimate WordPress Launch Checklist

We've compiled all the essential checklist items for your next WordPress website launch into one handy ebook.
Yes, Send Me the Free eBook!