wordpress 在第一篇文章后面添加GG AD
July 15th, 2006
首先登陆后台-Presentation(风格)-Theme Editor(编辑风格) -Main Index Template(编辑index)
1,找到
- <?php if (have_posts()) : ?>
在后面添加\r
- <?php $counter = 1; ?>
2,找到
- <?php the_content('…'); ?>
在后面添加\r
- <?php $counter = $counter + 1; ?>
3,找到
- <?php endwhile; ?>
在上面添加\r
- <?php if(2 == $counter){
- echo ' 你的GG代码...';
- } ?>
4,Over…
