search results conditional sidebar
-
Hi,
I am working on search.php because i would like to have 2 different sidebars appear on my search results page. One sidebar would appear on all pages apart from 1, and the other would appear only on 1 page and not the rest, and that is an image library page I have made.
1 sidebar is called “searchform.php” and the other sidebar is “sidebar.php”
I have looked at examples, and have come up with this
<?php
if (is_page(‘450’) ) {echo ‘<?php include(TEMPLATEPATH.”/searchform.php”);?>’;
}
else {
echo ‘<?php include(TEMPLATEPATH.”/sidebar.php”);?>’;
}
?>but its not working ??
any ideas on how I can get this to work ?
I hope I have been clear, please let me know if you have any questions.
cheers,
tom
- The topic ‘search results conditional sidebar’ is closed to new replies.