Wordpress the_content挂钩调用了两次

时间:2017-06-22 14:10:49

标签: php wordpress hook

我现在被困住了,无法找到我做错的事。 我希望在发布内容之后附加作者bio。 这就是我的工作。

add_action( 'the_content', 'author_bio' );

function author_bio( $content ) {
    if(is_single()){
        $content .= "Author bio..";
    }

    return $content;
}

问题是文本输出两次 - 在帖子之前和之后,我希望它只显示一次。

0 个答案:

没有答案