本文整理自网络,侵删。
调用网站最新文章:
代码如下:
<?php
query_posts('showposts=10&orderby=new'); //showposts=10表示10篇
while(have_posts()): the_post();
?>
<li><a target="_blank"><?php the_title() ?></a></li> //这里可以写成你自己需要的样式
<?php endwhile; ?>
<?php
query_posts('showposts=10&orderby=new'); //showposts=10表示10篇
while(have_posts()): the_post();
?>
<li><a target="_blank"><?php the_title() ?></a></li> //这里可以写成你自己需要的样式
<?php endwhile; ?>
调用随机文章:
代码如下:
<?php
query_posts('showposts=10&orderby=rand'); //showposts=10表示10篇
while(have_posts()): the_post();
?>
<li><a target="_blank"><?php the_title() ?></a></li> //这里可以写成你自己需要的样式
<?php endwhile; ?>
<?php
query_posts('showposts=10&orderby=rand'); //showposts=10表示10篇
while(have_posts()): the_post();
?>
<li><a target="_blank"><?php the_title() ?></a></li> //这里可以写成你自己需要的样式
<?php endwhile; ?>
调用某个分类下的最新文章:
相关阅读 >>
wordpress中is_sticky()判断文章是否置顶的参数与用法
wordpress性能优化加速五大方法:php mysql优化等
wordpress特定文章对搜索引擎隐藏或只允许搜索引擎查看
wordpress与drupal的nginx配置rewrite重写规则示例
crayon syntax highlighter代码高亮插件与fancybox图片暗箱冲突的解决方法
将博客园(cnblogs.com)数据导入到wordpress的代码
更多相关阅读请进入《wordpress》频道 >>
相关推荐
评论
管理员已关闭评论功能...
- 欢迎访问木庄网络博客
- 可复制:代码框内的文字。
- 方法:Ctrl+C。