Skip to content

Instantly share code, notes, and snippets.

@AlexGStapleton
Last active July 2, 2024 01:04
Show Gist options
  • Save AlexGStapleton/44e459890afa06eefeb4621e4d682145 to your computer and use it in GitHub Desktop.
Save AlexGStapleton/44e459890afa06eefeb4621e4d682145 to your computer and use it in GitHub Desktop.
SiteOrigin Blog Widget. Filter out non-top-level categories
<?php
add_filter( 'siteorigin_widgets_blog_filter_categories_output', function( $categories ) {
if ( empty( $categories ) ) {
return $categories;
}
return array_filter( $categories, function( $category ) {
return $category->parent === 0;
} );
}, 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment