开发者 |
DvanKooten
12notions |
---|---|
更新时间 | 2014年7月25日 15:42 |
捐献地址: | 去捐款 |
PHP版本: | 3.8 及以上 |
WordPress版本: | 4.0 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
highlight-new-posts.zip
to your plugins directory, which usually is /wp-content/plugins/
.Sure, you can do this using CSS by targeting the .post .higlight-new
element.
.post .highlight-new { background: black; color: white; }
Yes, the plugin adds a .highlight
class to all new posts which you can use to change the styling of new posts.
The following CSS example changes the text color of new posts to red.
.highlight { color: red; }