我在“the_author”上添加了一个过滤器,用于添加一些带有作者信息的html代码。但是我的所有HTML都是作者链接的锚点。例如:
add_filter( 'the_author', 'myfun');
function myfun( $content ) {
$content.= 'hi';
return $content;
}
现在“你好”只是一个简单的文字,不应该包含在作者锚标签中。请帮忙。
答案 0 :(得分:0)
add_filter( 'the_author', 'myfun' );
add_filter( 'get_the_author_display_name', 'myfun' );
function myfun( $name) {
global $post;
if ( $name)
$name.= '</br>hi';
return $name;
}