Created
February 19, 2015 12:32
-
-
Save timersys/8ef9673f08e7e23c36bb to your computer and use it in GitHub Desktop.
add text to wordpress social invitations buddypress screen
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
| // 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