Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created February 24, 2014 09:57
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 jameskoster/9184861 to your computer and use it in GitHub Desktop.
Save jameskoster/9184861 to your computer and use it in GitHub Desktop.
Stitched - Change introduction text
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