标签: php wordpress hook
我现在被困住了,无法找到我做错的事。 我希望在发布内容之后附加作者bio。 这就是我的工作。
add_action( 'the_content', 'author_bio' ); function author_bio( $content ) { if(is_single()){ $content .= "Author bio.."; } return $content; }
问题是文本输出两次 - 在帖子之前和之后,我希望它只显示一次。