我正在使用 Wordpress 创建一种 Wiki。如何向我的用户展示所有文章的最新更改/修订?
它应该是这样的,但要简单得多:我只需要文章的名称和进行更改的人
试试这个,希望对你有帮助:
将此代码放在模板的开头。
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
$postData = query_posts('category_name='.$slug.'&post_status=publish,future&showposts=5&paged='.$paged.'&orderby=modified');
谢谢。
或尝试使用此链接:
[用于修改日期]:http ://codex.wordpress.org/Template_Tags/the_modified_date
[用于修改时间]:http ://codex.wordpress.org/Template_Tags/the_modified_time
谢谢。