Skip to content

Instantly share code, notes, and snippets.

@jameskoster
Created February 24, 2014 09:57
Show Gist options
  • Select an option

  • Save jameskoster/9184861 to your computer and use it in GitHub Desktop.

Select an option

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