The_category with Excludes - CSS-Tricks

Inhaltsverzeichnis

Die WordPress-Funktion the_category bietet keinen Ausschlussparameter. Das macht:

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

Und solange Sie das haben, können Sie die Ausgabe ändern, wie Sie möchten, was sehr schön ist.

Verwendung ist wie:

Welches würde alle Kategorien außer der mit der ID von 4 auflisten.

Interessante Beiträge...