Skip to content

Instantly share code, notes, and snippets.

@timersys
Created February 19, 2015 12:32
Show Gist options
  • Select an option

  • Save timersys/8ef9673f08e7e23c36bb to your computer and use it in GitHub Desktop.

Select an option

Save timersys/8ef9673f08e7e23c36bb to your computer and use it in GitHub Desktop.
add text to wordpress social invitations buddypress screen
// hook to wsi bp screen
add_action('wsi/bp/screen_one' , 'attach_my_screen');
function attach_my_screen() {
// hook to bp template
add_action( 'bp_template_content' , 'bp_template_content_func',9 );
}
// My actual text
function bp_template_content_func() {
echo "My content goes here";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment