Hi,
I have setup a static posts page. The WordPress Page is "Weblog" with a slug of 'weblog'. In my sidebar.php, I have the following code:
if(is_page('weblog')){
//DO stuff like show categories
}
This doesn't seem to work.
However, if I go to my settings and remove the static setting for blog posts page, and then navigate back to the weblog page, the above code outputs the expected result.
It seems, then, that signifying a page as the static page for Blog Posts breaks the is_page() function for that page. Is this a known issue? I couldn't find anything mentioning it.
Thanks.