The_category with Excludes - CSS-Tricks

Anonim

Funkcja WordPress the_category nie oferuje parametru wykluczającego. To robi:

function exclude_post_categories($excl='', $spacer=' ') ( $categories = get_the_category($post->ID); if (!empty($categories)) ( $exclude = $excl; $exclude = explode(",", $exclude); $thecount = count(get_the_category()) - count($exclude); foreach ($categories as $cat) ( $html = ''; if (!in_array($cat->cat_ID, $exclude)) ( $html .= 'cat_ID) . '" '; $html .= 'title="' . $cat->cat_name . '">' . $cat->cat_name . ''; if ($thecount > 0) ( $html .= $spacer; ) $thecount--; echo $html; ) ) ) )

Poza tym, jeśli to masz, możesz zmieniać wyjście, jak chcesz, co jest miłe.

Sposób użycia jest następujący:

Który wymienia wszystkie kategorie z wyjątkiem kategorii o identyfikatorze 4.