您的位置:首页 > 其它

Wordpress 显示指定作者的文章

2010-03-02 09:24 302 查看
<ul>
<?php
//The Query
query_posts('caller_get_posts=1&author=1&showposts=3&post_type=post&post_status=publish&orderby=title&order=ASC');
//or query_posts('caller_get_posts=1&author_name=JonT&showposts=3&post_type=post&post_status=publish&orderby=title&order=ASC');
//The Loop
if ( have_posts() ) : while ( have_posts() ) : the_post();
?>
<li><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></li>
<?php
endwhile; else:
echo "不存在任何记录";
endif;
//Reset Query
wp_reset_query();
?>
</ul>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: