Wordpress 修改 - 在文章段落中加入广告
2008-05-01 14:13对 Wordpress 稍作修改,就可以在文章的段落之间自动加入图片或文字广告。在 index.php 或 single.php 中找到 < ?php the_content(); ?> 替换为下面的代码即可: <?php $content = apply_filters(’the_content’, $post->post_content); $save = explode(”</p>”, $content); $count = 1; foreach ($save as $a){ if ($count == 3){ echo’ 在这里放上你的广告代码,比如... [阅读全文]
Wordpress 指定某个分类的文章到首页显示
2006-07-15 06:49If you are finished with the posts in the original query, and you want to use a different query, you can reuse the $wp_query object by calling query_posts() and then looping back through. The query_posts() will perform a new query, build a new posts array, and reset the loop counter. // Get the las... [阅读全文]
最新评论