The_category com Excludes - CSS-Tricks

Anonim

A função do WordPress the_category não oferece um parâmetro de exclusão. Isso faz:

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; ) ) ) )

Além disso, enquanto você tiver isso, você pode alterar a saída da maneira que quiser, o que é bom.

O uso é como:

Que listaria todas as categorias, exceto aquela com o ID 4.