Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我试图在我的主页的主要内容区域中仅在第一个帖子下方添加一个广告横幅,但是当我添加标签代码时,它会将其放在主要内容中的每个帖子下方。我只希望广告出现在第一个帖子下。有人可以帮忙吗?
www.blackcelebkids.com
非常感谢您提前。
<?php $i=1; ?> <?php while ( have_posts() ) : the_post(); ?> <?php //your post code here ?> <?php if($i==1){ /*put your banner code here*/ } ?> <?php $i++; endwhile; ?>