摘要: 开发WordPress网站就靠它了 <?php query_posts('cat=20&posts_per_page=4'); while(have_posts()): the_post(); ?> <li><a href="<?php the_permalink(); ?>" target="_b 阅读全文
posted @ 2021-02-01 21:51 xiaobingch 阅读(424) 评论(0) 推荐(0)
摘要: WordPress的分类页、Search页,Tag页等输出的文章列表时,如果想在中间位置(比如第5个文章后面)出现,可以用下面的代码: <?php if ($wp_query->current_post == 4) : ?> <div>(广告代码)</div> <?php endif; ?> <?p 阅读全文
posted @ 2021-02-01 21:36 xiaobingch 阅读(265) 评论(0) 推荐(0)