首先确定整个页面的目标,确保您正在呼叫body_class()
HTML内部<body>
标签:
<body <?php body_class(); ?>
然后,您可以通过以下方式利用post格式特定的类输出
body_class()
根据您的需要进行设计。
单个博客帖子使用该类single-post-format-{format}
body.single-format-aside {}
post格式分类术语的存档索引页使用类
term-post-format={format}
:
body.term-post-format-aside {}
这应该允许您以正文为目标,或者将其用作祖先选择器以页面上的任何其他内容为目标。
首先确定邮件容器的目标,确保您正在呼叫post_class()
邮政集装箱内:
<div id="post-"<?php the_ID(); ?> <?php post_class(); ?>>
然后,您可以通过以下方式利用post格式特定的类输出
post_class()
根据您的需要进行设计。
指定了帖子格式的帖子使用“format-{format}”类
div.format-aside {}