Hallo,
habe eine kleine Design Frage - binde wie folgt zu jedem Post die tags ein:
PHP
<div class="tags"><kbd><?php the_post_keytags(false, 'tag', 'Alle Beiträge lesen zu'); ?></kbd></div>
CSS:
PHP
.tags kbd {
padding: 1px 3px 1px 3px;
margin: 1px 1px 1px 1px;
background-color: #efefef;
color: #333333;
border-top: 1px solid #cccccc;
border-right: 1px solid #999999;
border-bottom: 1px solid #999999;
border-left: 1px solid #cccccc;
font-weight: bold;
float:right;
}
Alles anzeigen
Nun wird der gesamte Block (also auch mehrere Tags, wenn vorhanden) in einem dargestellt. Wie bekomme ich das hin, dass jedes tag in so einem kbd 'tag' / Block dargestellt wird?!
Danke