Forums
Forums / Themes and Templates / Changing Sidebar
(@hbastiaan)
17 years, 5 months ago
my wordpress website starts with an static page. On that static page (intro) i have a sidebar with: 1. Search 2. Latest News 3. Links 4. Meta
On other pages i want the have another sidebar with 1. Search 2. Pages 3. Links 4. Meta
I use the theme Mandigo.
Can i choose at making an new page for another sidebar?
(@stvwlf)
in sidebar.php, add some code
if (is_front_page() {
… code to display your home page sidebar
} else {
… code to display the other pages sidebar
}
OOPS – code should be
<?php if ( is_front_page() ) {
} ?>
The topic ‘Changing Sidebar’ is closed to new replies.