WordPress函数文档get_author_posts_url()
获取指定作者的文章列表网址 描述 获取指定ID(参数 $author_id)的作者的文章列表网址。 用法 &l…
获取指定作者的文章列表网址
描述
获取指定ID(参数 $author_id)的作者的文章列表网址。
用法
<?php get_author_posts_url( $author_id, $author_nicename ); ?>
参数
$author_id
(integer) (必填) ID of the author whose URL should be retrieved.
默认值: None
$author_nicename
(string) (可选) User nicename.
默认值: empty
返回值
(string)
The URL to the author’s page.
示例
Display the link of the author page for the author of the current post
1
2
3
4
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
<a href=“<?php echo get_author_posts_url( get_the_author_meta( ‘ID’ ) ); ?>“><?php the_author(); ?></a>
|
源文件
get_author_posts_url() can be located in wp-includes/author-template.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
/* ———————————-
* wordpress函数 kim收集
* ———————————- */
/**
* Retrieve the URL to the author page for the user with the ID provided.
*
* @since 2.1.0
*
* @global WP_Rewrite $wp_rewrite
*
* @return string The URL to the author’s page.
*/
function get_author_posts_url($author_id, $author_nicename = ”) {
global $wp_rewrite;
$auth_ID = (int) $author_id;
$link = $wp_rewrite->get_author_permastruct();
if ( empty($link) ) {
$file = home_url( ‘/’ );
$link = $file . ‘?author=’ . $auth_ID;
} else {
if ( ” == $author_nicename ) {
$user = get_userdata($author_id);
if ( !empty($user->user_nicename) )
$author_nicename = $user->user_nicename;
}
$link = str_replace(‘%author%’, $author_nicename, $link);
$link = home_url( user_trailingslashit( $link ) );
}
/**
* Filter the URL to the author’s page.
*
* @since 2.1.0
*
* @param string $link The URL to the author’s page.
* @param int $author_id The author’s id.
* @param string $author_nicename The author’s nice name.
*/
$link = apply_filters( ‘author_link’, $link, $author_id, $author_nicename );
return $link;
}
|
相关
the_author(),
get_the_author(),
the_author_link(),
get_the_author_link(),
the_author_meta(),
get_the_author_meta(),
the_author_posts(),
get_the_author_posts(),
the_author_posts_link(),
get_author_posts_url(),
get_the_modified_author(),
the_modified_author(),
wp_dropdown_users(),
wp_list_authors()
- 原文:http://codex.wordpress.org/Function_Reference/get_author_posts_url
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
评论功能已经关闭!