How to display a sidebar only for blog?
I have 2 sidebars(primary and secondary). I want the secondary sidebar to display only on the blog page and primary sidebar to display everywhere else except for the blog page. What have I tried:
In functions.php :
if (is_page('blog-35')) {
get_sidebar('secondary');
} else {
get_sidebar('primary');
}
Unfortunately this doesn't work. Any hints on how to debug this? I don't understand what am I doing wrong in the code above.(blog-35 is the body class of the page I want to display only the secondary sidebar)