Wordpress上的特色帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress上的特色帖子相关的知识,希望对你有一定的参考价值。
This code goes into the index.php
<?php while (have_posts()) : the_post(); ?> <!-- EVEN IF YOU'VE GOT PAGEST OF POSTS AFTER THE HOMEPAGE, ONLY THE FIRST POST ON THE FIRST PAGE WILL BE STYLED DIFFERENTLY --> <?php if (is_paged()) : ?> <?php $postclass = ('regular'); ?> <?php else : ?> <?php $postclass = ($post == $posts[0]) ? 'featured' : 'regular'; ?> <?php endif; ?> <!-- NOW THAT WE'VE SET UP THE CONDITIONS, LETS CREATE A DIV WITH THE CSS CLASS FED DYNAMICALLY --> <div class="<?php echo $postclass; ?>"> <!-- THIS IS WHERE ALL THE SCRIPT FOR YOUR POST GOES --> <?php comments_template() ?> <?php endwhile ?>
以上是关于Wordpress上的特色帖子的主要内容,如果未能解决你的问题,请参考以下文章
悬停在帖子链接(WordPress)上时如何显示帖子的特色图片?
如何在没有 single.php 的情况下从 wordpress 帖子中删除特色图片
Wordpress - 特色图像元框未显示在自定义帖子类型上