<?php the_author_nickname(); ?>这句是用来读取WordPress后台设定的作者昵称,如果不愿意使用昵称而要使用名字,也可以使用其它函数:the_author显示作者名 字;the_author_login显示作者登录名;the_author_url显示作者的网站地址。
<?php the_time(’F dS, Y’); ?> 显示发布时间
<?php the_category(’, ‘) ?> 显示文章分类。
<?php edit_post_link(’edit’, ‘(’, ‘)’); ?>如果作者就是博客管理员,则会在登录状态下显示edit编辑按钮
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 (添加于2.1版本) 显示一个以文章作者名为链接名,链接地址为文章作者的网址的链接。
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供稿种子。
<?php list_authors(optioncount, exclude_admin, show_fullname, hide_empty, ‘feed’, ‘feed_image’); ?>
<?php list_authors(FALSE, FALSE, TRUE, FALSE); ?>
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,默认为空
例如:
<?php wp_list_authors(’show_fullname=1&optioncount=1′); ?>
用户函数调用代码:<?php the_author(); ?>显示日志撰写的用户,使用在loop中.
用户描述函数调用代码:<?php the_author_description(); ?>显示关于这个用户的描叙,使用在loop中.
用户登录函数调用代码:<?php the_author_login(); ?>显示登录的用户,必须用在loop中
用户的姓函数调用代码:<?php the_author_firstname(); ?>显示作者的姓,必须用在loop中
显示用户的名函数调用代码:<?php the_author_lastname(); ?>显示作者名,必须用在loop中
用户昵称函数调用代码:<?php the_author_nickname(); ?>同上必须用在loop中
用户ID函数调用代码:<?php the_author_ID(); ?>显示用户的ID,可以利用它为每篇日志增加一个用户缩略图
用户的邮箱函数调用代码:<?php the_author_email(); ?>显示用户邮箱链接,可以使用于联系作者
用户的网站url函数调用代码:<?php the_author_url(); ?>显示用户的网站链接
用户的连接函数调用代码:<?php the_author_link(); ?>显示用户的连接
Author AIM Screenname函数调用代码:<?php the_author_aim(); ?>显示用户aim信息
用户所有文章函数调用代码:<?php the_author_posts(); ?>显示用户在WordPress上的所有文章
用户文章连接函数代码调用:<?php the_author_posts_link(); ?>显示用户在WordPress上的所有文章链接
用户清单函数代码调用:<?php wp_list_authors(’arguments’); ?>
使用于wordpress mu.
<?php wp_list_authors(’exclude_admin=1&show_fullname=0′); ?>显示用户所有清单并连接到WordPress日志和feed.下面是具体调用:
optioncount显示每个作者的文章数目.
<?php wp_list_authors(’optioncount=1′); ?>
1 (true)
0 (false)
exclude_admin从用户清单中排除’admin’用户.
<?php wp_list_authors(’exclude_admin=0′); ?>>
1 (true)
0 (false)
show_fullname显示用户全名,没有的话就显示昵称.
<?php wp_list_authors(’show_fullname=1′); ?>>
1 (true)
0 (false)
hide_empty不显抓写日志为0的用户.
<?php wp_list_authors(’hide_empty=0′); ?>
1 (true)
0 (false)
feed文字链接到用户撰写日志的Feed.
<?php wp_list_authors(’feed=RSS’); ?>
String
feed_imag图片链接到用户的Feed.
<?php wp_list_authors(’feed_image=images/picture.jpg’); ?>>
String
评论