函数
get_the_modified_author ( No parameters )
- 返回值
-
- (string|void) The author’s display name, empty string if unknown.
- 定义位置
-
-
wp-includes/author-template.php
, line 91
-
wp-includes/author-template.php
- 引入
- 2.8.0
- 弃用
- –
Retrieves the author who last edited the current post.
function get_the_modified_author() { $last_id = get_post_meta( get_post()->ID, '_edit_last', true ); if ( $last_id ) { $last_user = get_userdata( $last_id ); /** * Filters the display name of the author who last edited the current post. * * @since 2.8.0 * * @param string $display_name The author's display name, empty string if unknown. */ return apply_filters( 'the_modified_author', $last_user ? $last_user->display_name : '' ); } }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。