Created
February 24, 2014 09:57
-
-
Save jameskoster/9184861 to your computer and use it in GitHub Desktop.
Stitched - Change introduction text
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
| add_filter( 'stitched_intro_message', 'jk_custom_intro_message' ); | |
| function jk_custom_intro_message( $intro ) { | |
| $intro = 'My custom introductory text'; | |
| return $intro; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment