Skip to content

Instantly share code, notes, and snippets.

@railmedia
Created September 15, 2022 18:11
Show Gist options
  • Select an option

  • Save railmedia/c5685faf75a8c73e29f87acaa7a9e203 to your computer and use it in GitHub Desktop.

Select an option

Save railmedia/c5685faf75a8c73e29f87acaa7a9e203 to your computer and use it in GitHub Desktop.
<?php
function wp01234556789_remove_sidebar( $is_active_sidebar ) {
if( is_product_category() ) {
$cat_id = get_queried_object()->term_id;
$parents = get_term_parents_list($cat_id, 'product_cat', array( 'link' => false, 'inclusive' => false ));
$parents = explode( '/', $parents );
return count( $parents ) >= 3 ? true : false;
}
}
add_filter( 'is_active_sidebar', 'wp01234556789_remove_sidebar', 10, 2 );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment