Skip to content

Instantly share code, notes, and snippets.

@Swapnildhanrale
Created August 14, 2019 13:56
Show Gist options
  • Save Swapnildhanrale/9597da281cc25ab1032ab96a34de8c7c to your computer and use it in GitHub Desktop.
Save Swapnildhanrale/9597da281cc25ab1032ab96a34de8c7c to your computer and use it in GitHub Desktop.
Show only one category from the the_category_list() function.
<?php
add_filter( 'the_category_list', function( $categories ) {
if( ! empty( $categories ) && is_array($categories) ) {
foreach ($categories as $key => $cat) {
if( ! $cat->parent ) {
$ob[] = $categories[$key];
return $ob;
}
}
}
return $categories;
}, 100 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment