Web Development Tips and Tricks

Web Development Tips and Tricks

Thursday, May 12, 2011

How to Hide the Sidebar on Your WordPress Home Page

First open your index.php and locate the following code:

< ? php get_sidebar();
? >
Then Replace the code with:
< ? php if (!is_front_page())
{
get_sidebar();
}
? >
And thats it. Now your Front Page will not have the sidebar.

No comments:

Post a Comment