GochiSiyan

only 1 category

Apr 20th, 2021 (edited)
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. add_filter('the_category_list',function ($categories){
  2. $main_cat = jnews_get_primary_category( get_post()->ID );
  3. if ( $main_cat ) {
  4. return [get_category($main_cat)];
  5. }
  6. if ( ! empty( $categories ) ) {
  7. return [$categories[0]];
  8. }
  9. return $categories;
  10. });
Add Comment
Please, Sign In to add comment