Skip to content

Instantly share code, notes, and snippets.

@markoheijnen
Created March 27, 2012 12:53
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 markoheijnen/2215557 to your computer and use it in GitHub Desktop.
Save markoheijnen/2215557 to your computer and use it in GitHub Desktop.
Create span on last character of WordPress title
<?php
$string = get_the_title();
$last_character = $string[ strlen( $string ) - 1 ];
echo substr( $string, 0, -1 ) . '<span>' . $last_character . '</span>';
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment