我尝试使用下面提到的代码在BuddyPress个人资料页面中添加自定义按钮。但是当我添加该代码时,只有Name&个人资料图片正在出现&没有通过BuddyPress生成的其他内容出现:
function mapbtn_custom_button() {
echo '<div class="mapbtn"><a href="#" title="Fashion World">map</a><div>';
}
add_filter( 'bp_before_member_header_meta', 'mapbtn_custom_button' );
答案 0 :(得分:0)
您正试图将过滤器挂钩到动作调用。
请改为尝试:
add_action( 'bp_before_member_header_meta', 'mapbtn_custom_button' );