Blogger Information
Blog 263
fans 3
comment 2
visits 113056
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
wordpress 如何显示一个作者的文章列表?
福哥的博客
Original
3128 people have browsed it

最简单的通过author ID 查找是下面这个样子

<?php// The Query$the_query = new WP_Query( 'author=123' );// The Loopif ( $the_query->have_posts() ) {
        echo '<ul>';
	while ( $the_query->have_posts() ) {
		$the_query->the_post();
		echo '<li>' . get_the_title() . '</li>';
	}
        echo '</ul>';} else {
	// no posts found}/* Restore original Post Data */wp_reset_postdata();


作者:知乎用户
链接:https://www.zhihu.com/question/22969168/answer/23225124
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

作者:知乎用户
链接:https://www.zhihu.com/question/22969168/answer/23225124
来源:知乎
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

下面是上面的网页关于作者的部分

ParametersAuthor ParametersShow posts associated with certain author.
author (int) - use author id.
author_name (string) - use 'user_nicename' (NOT name).
author__in (array) - use author id (available with Version 3.7).
author__not_in (array) - use author id (available with Version 3.7).
Show Posts for one Author
Display posts by author, using author id:
$query = new WP_Query( 'author=123' );
Display posts by author, using author 'user_nicename':
$query = new WP_Query( 'author_name=rami' );
Show Posts From Several Authors
Display posts from several specific authors:
$query = new WP_Query( 'author=2,6,17,38' );
Exclude Posts Belonging to an Author
Display all posts except those from an author(singular) by prefixing its id with a '-' (minus) sign:
$query = new WP_Query( 'author=-12' );
Multiple Author Handling
Display posts from multiple authors:
$query = new WP_Query( array( 'author__in' => array( 2, 6 ) ) );
You can also exclude multiple author this way:
$query = new WP_Query( array( 'author__not_in' => array( 2, 6 ) ) );

一般情况下,多数主题下都有author.php这个文件,这既是作者展示页面。如果发现自己正在使用的主题中没有author.php这个文件的话, Wordpress 会默认寻找 archives.php文件,如果连 archives.php 都不可用, Wordpress 会接着寻找你的 index.php 文件。

想要创建一个author.php文件的话,可以拷贝archives.php 或者 single.php 的内容。在这两个页面的基础上插入对应的wordpress作者页面调用函数,即可调用相应的作者信息。

常用的作者信息调用函数:

the_author 显示文章的作者

the_author_description 显示文章作者的描述(作者个人资料中的描述)

the_author_login 显示文章作者的登录名

the_author_firstname 显示文章作者的firstname(名)

the_author_lastname 显示文章作者的lastname(姓)

the_author_nickname 显示文章作者的昵称

the_author_ID 显示文章作者的ID号

the_author_email 显示文章作者的电子邮箱

the_author_url 显示文章作者的网站地址

the_author_link  显示一个以文章作者名为链接名,链接地址为文章作者的网址的链接。

the_author_icq 显示文章作者的icq

the_author_aim 显示文章作者的aim

the_author_yim 显示文章作者的yim

the_author_msn (不推荐使用) 显示文章作者的msn

the_author_posts 显示文章作者已发表文章的篇数

the_author_posts_link 显示一个链接到文章作者已发表文章列表的链接

list_authors (不推荐使用) 显示blog所有作者和他们的相关信息。完整函数如下:

参数:

optioncount:是否显示各作者已发表文章的篇数,可选值为:TRUE 和 FALSE(默认值)

exclude_admin:是否不列出管理员,可选值为:TRUE(默认值) 和 FALSE

show_fullname :是否显示各作者的全名,可选值为:TRUE 和 FALSE(默认值)

hide_empty:是否不显示发表文章数为0的作者,可选值为:TRUE(默认值) 和 FALSE

feed:链接到各个作者发表文章的RSS供稿种子链接名,默认为空,不显示RSS供稿种子

feed_image:供稿种子的图片地址,如果提供此项,则覆盖上面的feed,默认为空

代表不显示各个作者的发布文章数,列出管理员,显示各作者的全名,显示发布文章数为0的作者和不显示RSS供稿种子。

wp_list_authors 显示blog作者列表,如果作者发表过文章,则他的名字将链接到他发表的文章列表中。可定义是否显示其他信息。

参数:

optioncount:是否显示各个作者发表文章数,可选值:true 和 false(默认值)

exclude_admin:是否不显示“admin”用户,可选值:true(默认值) 和 false

show_fullname:是否显示各个作者的全名,如果不显示,将显示昵称。可选值:true 和 false(默认值)

hide_empty:是否不显示发表文章数为0的作者,可选值:true(默认值) 和 false

feed:链接到各个作者发表文章的RSS供稿种子链接名,默认为空,不显示RSS供稿种子

feed_image:供稿种子的图片地址,如果提供此项,则覆盖上面的feed,默认为空 

增加用户信息字段:

为了更加简便与安全的增加信息字段,建议将自定义字段添加到“联系信息”中。“联系信息”的字段添加方式非常简单,打开wp-includes/user.php文件,约在1539行可以找到:$user_contactmethods = array代码,在大括号中修改或增加字段。

字段增加的格式为 ‘数据库字段名’ => __(‘标题说明文字’) 修改后的完整代码演示:

function _wp_get_user_contactmethods( $user = null ) {
$user_contactmethods = array();
if ( get_site_option( ‘initial_db_version’ ) < 23588 ) {
$user_contactmethods = array(
‘aim’ => __( ‘支付宝收款地址’ ),
‘addres’ => __( ‘所在地’ ),
‘job’ => __( ‘职业’ ),
‘qq’ => __( ‘QQ’ ),
‘touxiang’ => __( ‘头像url’ )
);
}
return apply_filters( ‘user_contactmethods’, $user_contactmethods, $user );
}

可以根据需要删除默认的字段,添加自己需要的字段,以达到增加用户选项的目的。

修改此项后,在用户后台的个人资料中也会自动出现对应的输入框,无需再修改其他程序文件。如果需要在作者页面的前端调用显示自定义字段则只需要使用 “echo $curauth->xxx;”的PHP语句即可输出对应字段。

附上本文的作者页面范例:http://www.frontopen.com/author/wanglei 

安装author info插件。制作一个小插件,安装后可以直接实现上述代码所说的功能。


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post