悟空搜在学习WordPres主题开发过程中, 会频繁用到获取作者相关信息,例如:获取文章作者昵称、 获取文章作者ID、 获取作者文章数量等等信息。
所以悟空搜就整理了一些常用的WordPres作者相关函数代码, 希望能给正在学习WordPres开发的朋友一些帮助。
作者相关函数
WORDPRESS代码 | 获取内容 |
---|---|
<?php the_author(); ?> | 显示文章的作者 |
<?php the_author_description(); ?> | 显示文章作者的描述(作者个人资料中的描述) |
<?php the_author_login(); ?> | 显示文章作者的登录名 |
<?php the_author_firstname(); ?> | 显示文章作者的firstname |
<?php the_author_lastname(); ?> | 显示文章作者的lastname |
<?php the_author_nickname(); ?> | 显示文章作者的昵称 |
<?php the_author_ID(); ?> | 显示文章作者的ID号 |
<?php the_author_email(); ?> | 显示文章作者的邮箱 |
<?php the_author_url(); ?> | 显示文章作者的网站地址 |
<?php the_author_link (); ?> | 显示文章作者名链接地址为文章作者的网址。 |
<?php the_author_posts(); ?> | 显示文章作者已发表文章的篇数 |
<?php the_author_posts_link(); ?> | 显示文章作者已发表文章列表的链接 |
原文链接:https://xiaohost.com/1393.html,转载请注明出处。
评论0