I'm trying to insert the following code into my template which will show a sidebar dependant on the page your looking at
Code: Select all
<div id="sidebar">
<?php
if ($body=='index')
{echo ' {global_content name='home-sidebar'} '}
elseif ($body=='about-us')
{echo ' {global_content name='about-sidebar'} '} ...etc....etc ....etc
?>
</div>my problem is that i'm not sure how to get the body/ page id? I'm sure this must be set in the database to call the content etc dependant on the page.
can anyone tell me how to assign a body/page id or where to get this info?
many thanks in advance
