Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kimcoleman/8eb08098e33076c2ef0a9d9af6701fca to your computer and use it in GitHub Desktop.
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.
<?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