Warning: This function has been deprecated. Use get_author_feed_link() instead.
get_author_rss_link( bool $echo = false, int $author_id = 1 )
Print/Return link to author RSS feed.
描述
参数
- $echo
-
(bool)
(Optional)Default value: false
- $author_id
-
(int)
(Optional)Default value: 1
返回值
(string)
源代码
File: wp-includes/deprecated.php
function get_author_rss_link($echo = false, $author_id = 1) {
_deprecated_function( __FUNCTION__, '2.5.0', 'get_author_feed_link()' );
$link = get_author_feed_link($author_id);
if ( $echo )
echo $link;
return $link;
}
更新日志
Version | 描述 |
---|---|
2.5.0 | Use get_author_feed_link() |
1.2.0 | Introduced. |
相关函数
Uses
-
wp-includes/functions.php:
_deprecated_function() -
wp-includes/link-template.php:
get_author_feed_link()
你可能对这些文章感兴趣:
- wordpress函数get_the_posts_navigation()用法示例
- wordpress函数get_the_title()用法示例
- wordpress函数get_the_terms()用法示例
- wordpress函数get_the_tags()用法示例
- wordpress函数get_the_taxonomies()用法示例
- wordpress函数get_the_permalink()用法示例
- wordpress函数get_the_password_form()用法示例
- wordpress函数get_the_posts_pagination()用法示例
- wordpress函数get_the_modified_time()用法示例
- wordpress函数get_the_modified_date()用法示例
- wordpress函数get_the_modified_author()用法示例
- wordpress函数get_the_guid()用法示例
- wordpress函数get_the_ID()用法示例
- wordpress函数get_the_excerpt()用法示例
如有疑问,请前往问答中心反馈!
反馈