由于某些原因,Wordpress无法显示在php(bootstrap)中创建的页面内容。 这是在自定义/自制模板中完成的。 你能看一下我下面的代码吗,看看我做错了什么?我正在使用wordpress的最新版本。
-DCMAKE_BUILD_TYPE=Debug
答案 0 :(得分:1)
$args = array('posts_per_page' => 3, 'paged' => $currentPage);
query_posts($args);
不再使用query_posts
$args = array('posts_per_page' => 3,'post_type'=>'post', 'paged' => $currentPage);
new WP_Query($args);