当然,您可以简单地获取一类帖子,然后使用您自己的CSS对其进行样式化。
以下代码摘自WordPress Codex的本页:Post Class
此函数返回帖子的所有类,它可以出现在主页中。php和/或单个。例如php。
// PHP single.php template code
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
主题循环中的HTML/PHP标记创建以下输出:
//HTML Output by WordPress
<div id="post-4564" class="class-name post-4564 post type-post status-publish format-standard hentry category-news">
如您所见,它为您提供了“格式标准”类。根据post格式,可以输出以下类:
aside, gallery, link, quote, status, video, audio, chat
所以,如果你想设计你的单曲。php不同,查看这些类并通过CSS获取它们:
/* CSS */
.format-standard {
background: url(\'images/lonesome-background.jpg\')top center no-repeat;
}
.format-audio {
background: url(\'images/funky-music.jpg\')top center no-repeat;
}
.format-gallery {
background: url(\'images/super-wide-gallery.jpg\')top center no-repeat;
}
。。。等等
你应该有一个look at the Codex. 希望这有帮助。