post_class() Definition
Was ist post_class()?
post_class() benutzen
Wie kann man post_class() benutzen?
In die Datei schreibt man:
<?php post_class(); ?>
<div id="post-<?php the_ID(); ?>"<?php post_class(); ?>>
In dem Quelltext als HTML wird z.B. Folgendes ausgegeben:
<div id="post-2" class="post post-2 category-12 category-lernen logged-in">
Siehe auch the_ID() .
In die CSS-Datei muss man Folgendes schreiben:
.post {
/* styles for all posts */
}
.post-2 {
/* styles for only post ID number 2 */
}
.category-lernen {
/* styles for all posts within the category of lernen */
}
Es gibt verschiedene Werte:
.post-[id]
.[post-type]
.type-[post-type]
.status-[post-status]
.format-[post-format] (default to 'standard')
.post-password-required
.post-password-protected
.has-post-thumbnail
.sticky
.hentry (hAtom microformat pages)
.[taxonomy]-[taxonomy-slug] (includes category)
.tag-[tag-name]
post_class() verwenden
Wofür kann man post_class() verwenden?
In WordPress werden an der Stelle, wo man <?php post_class(); ?> hinschreibt CSS-Klassifizierungen ausgegeben.
zu meinen persönlichen Favoriten hinzufügen! 0