
Wordpress
Swen程序员
不知己不能,知己不能之,知己己能之,不知己能之
展开
-
WordPress 无法使用the_content()方法输出内容
在使用WordPress里在一个页面里我使用the_content()方法来输出当前页面的内容,但却显示为空,而标题,url等都没有问题在网络上好像遇到这种情况的人很少只找到了一个说是可能是function里有函数覆盖了the_content方法但我将function方法删除掉还是不行,然后我将代码全部删除掉只留这一句""结果还是不行,无奈只能通过其他方式解决解决方转载 2017-02-10 09:41:55 · 4730 阅读 · 0 评论 -
WordPress调用指定分类下的文章
直接上代码:<?php $args=array( 'cat' => 1, // 分类ID 'posts_per_page' => 10, // 显示篇数 ); query_posts($args); if(have_posts()) : while (have_posts()) : the_post()转载 2017-02-10 09:55:47 · 6169 阅读 · 0 评论