Created
March 2, 2018 12:27
-
-
Save kimcoleman/8eb08098e33076c2ef0a9d9af6701fca to your computer and use it in GitHub Desktop.
Custom recipe to add the [pmpro_member_profile] to your bbPress user profile page for forum thread.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Use this recipe to add the [pmpro_member_profile] to your bbPress user profile page. | |
*/ | |
function insert_pmpro_member_profile_shortcode() { | |
$user_id = bbp_get_user_id( 0, true, false ); | |
echo do_shortcode( '[pmpro_member_profile fields="Company,company; Industry sector,tourism_sector; Region,tourism_region;Country,pmpro_bcountry;Website,user_url" show_bio="true" show_email="true" show_level="false" show_startdate="false" show_avatar="false" user_id="' . $user_id . '"]' ); | |
} | |
add_action( 'bbp_template_before_user_profile', 'insert_pmpro_member_profile_shortcode', 15, 0 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment