Quantcast
Channel: BuddyPress实验室
Viewing all articles
Browse latest Browse all 34

修改Buddypress头像默认连接(URL)的方法

$
0
0

在主题的functions.php中加入下面代码:

function goldposter_bp_avatar_upload_url_correct($url){
$url = “http://www.goldposter.com/img”;
return $url;
}
add_filter(‘bp_core_avatar_url’, ‘goldposter_bp_avatar_upload_url_correct’, 1);


Viewing all articles
Browse latest Browse all 34

Trending Articles