Skip to content

Instantly share code, notes, and snippets.

@tdmrhn
Created February 16, 2025 11:22
Show Gist options
  • Save tdmrhn/152dbd2571c6d206faf561e725632723 to your computer and use it in GitHub Desktop.
Save tdmrhn/152dbd2571c6d206faf561e725632723 to your computer and use it in GitHub Desktop.
Show only parent taxonomy terms in blog single post
<?php
add_filter('get_the_terms', function($terms, $post_id) {
if (is_single() && get_post_type($post_id) === 'post') {
return array_filter($terms, fn($term) => $term->parent === 0);
}
return $terms;
}, 10, 3);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment