Hi,
Could you help me with a bit of customization? I’m creating a site in which I want to use different sidebars for different static pages or category pages.
I’d like to run a sidebar with the Events widget on the non-Events pages and a sidebar without the Events widget on the Events page (because that page will have the big, lovely Events calendar!)
Usually I do this using a conditional on my sidebar.php page:
if ( is_page(‘2’) ) {include(TEMPLATEPATH . ‘/sidebar-testimonials.php’);}
elseif ( is_page(’41’) ) {include(TEMPLATEPATH . ‘/sidebar-fussy.php’);}
and that works well for me. But I need to have ID information about the Events page in order to make it work. Can you help me with this info?
Thanks!
Ann