我在自己的BuddyPress网站上使用了此代码。很有魅力!
// Use a better image than default mystery man
function bp_custom_set_avatar_constants() {
define( \'BP_AVATAR_DEFAULT\', get_stylesheet_directory_uri() . \'/images/mystery-man.jpg\' );
define( \'BP_AVATAR_DEFAULT_THUMB\', get_stylesheet_directory_uri() . \'/images/mystery-man-50.jpg\' );
}
add_action( \'bp_init\', \'bp_custom_set_avatar_constants\', 2 );
将此添加到
bp-custom.php
文件,或者,如果您正在开发一个主题
functions.php
文件