@becks-star
Active 10 years, 3 months ago
-
Henry Wright replied to the topic Where is bp_after_member_header defined in the forum How-to & Troubleshooting 10 years, 3 months ago
Hi @becks-star
bp_profile_after_header
isn’t a function. It’s an action hook. You would usually write a function of your own and ‘hook’ it tobp_profile_after_header
.For example:
function my_callback() {
// Do something amazing...
}
add_action( 'bp_profile_after_header', 'my_callback' );You can read more about hooks here:…[Read more]