I'm sort of new to WP and BP, is there a way to render a BP avatar in my WP roots theme? I want the avatar to show in a menu bar when the use is logged in.

有帮助吗?

解决方案

Yes, BP has a function you can use to output an avatar:

$args = array( 'item_id' => $user_id, 'type' => 'full' );
echo bp_core_fetch_avatar( $args );

$user_id should be changed to the ID of the user you want. i.e. bp_displayed_user_id() or bp_loggedin_user_id()

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top