Watmahatdahatma
Ich habe hier folgenden Code, der das erste Schlagwort im Template an verschiedenen Stellen (home.php; page.php) ausgeben soll. Problem: Es wird nichts angezeigt. Hat jemand eine Ahnung, einen Tip, wo der Hase im Pfeffer liegt?
Vielen Dank vorab und Ostergrüße,
Radulph
PHP:
<?php $posttags = get_the_tags(); if ($posttags && (count($posttags) > 0)) {
$tag = $posttags[0];
print '<a href="' . get_tag_link($tag->term_id) . '">' . $tag->name . '</a>'; } ?>
Vielen Dank vorab und Ostergrüße,
Radulph