Sidebar On Specific Pages and All Posts

I already looked through the other forum posts and didn’t find what I’m looking for. I don’t want a sidebar on my front page, but do want it on one or more of my other pages. I also want it to automatically be on my posts. I tried using the “layout and design” section, but was only good for adding a sidebar to everything

Hi,

Thanks for writing in!

To add sidebar to your pages, you can select a template with sidebar under Page attributes

For posts, you can add the code below in your Child Theme’s functions.php file.

/* Add a sidebar to posts */
  function add_sidebar_post($layout) {  
   if(is_singular('post')) {      
       $layout = "content-sidebar";
   }
  return $layout;
}

add_filter('x_option_x_layout_content', 'add_sidebar_post',9999);

Hope that helps

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.