我正在使用此筛选器在帖子中显示来宾作者,但我希望来宾作者的帖子显示在author.php
模板也是。
这是我的来宾作者代码(内部functions.php
).
<?php
add_filter( \'the_author\', \'guest_author_name\' );
add_filter( \'get_the_author_display_name\', \'guest_author_name\' );
function guest_author_name( $name ) {
global $post;
$author = get_post_meta( $post->ID, \'guest-author\', true );
if ( $author )
$name = $author;
return $name;
}
?>
。。。以下是作者模板:
http://codex.wordpress.org/Author_Templates#Sample_Template_File