WordPress作者过滤器

时间:2014-12-11 04:04:44

标签: wordpress

我在“the_author”上添加了一个过滤器,用于添加一些带有作者信息的html代码。但是我的所有HTML都是作者链接的锚点。例如:

add_filter( 'the_author', 'myfun');
function myfun( $content ) { 
        $content.= 'hi';
        return $content;
}

现在“你好”只是一个简单的文字,不应该包含在作者锚标签中。请帮忙。

1 个答案:

答案 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;
}