WordPress调用特定文章列表
在wordpress主题开发中会遇到需要在特定页面中调用指定的文章或文章列表,接下来教大家如何调用WordPress特定文章列表。 调用最新文章: <?php query_posts(‘showposts=10&orderby=new’); //showposts=10表示10篇 while(have_posts()): the_post(); ?> <li><
阅读更多 »
在wordpress主题开发中会遇到需要在特定页面中调用指定的文章或文章列表,接下来教大家如何调用WordPress特定文章列表。 调用最新文章: <?php query_posts(‘showposts=10&orderby=new’); //showposts=10表示10篇 while(have_posts()): the_post(); ?> <li><
阅读更多 »