Guest User

Untitled

a guest
Mar 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. <?php
  2. // Sidebar Logic
  3. function childtheme_sidebar_logic() {
  4. function childtheme_sidebar_logic_filter($sidebars_widgets){
  5. if(is_home() || is_single()) {
  6. unset($sidebars_widgets['primary-aside']);
  7. } else {
  8. unset($sidebars_widgets['secondary-aside']);
  9. }
  10. return $sidebars_widgets;
  11. }
  12. add_filter('sidebars_widgets','childtheme_sidebar_logic_filter' );
  13. }
  14. add_action('thematic_abovemainasides','childtheme_sidebar_logic');
  15. ?>
Add Comment
Please, Sign In to add comment