Skip to content

Instantly share code, notes, and snippets.

@kimcoleman
Created February 15, 2018 20:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kimcoleman/b7a17d5cdaff5f5375fdec502fe00c3e to your computer and use it in GitHub Desktop.
Save kimcoleman/b7a17d5cdaff5f5375fdec502fe00c3e to your computer and use it in GitHub Desktop.
Use this recipe to add the [pmpro_member_profile] to your bbPress user profile page.
<?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 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