Last active
December 30, 2015 05:49
-
-
Save ziyahan/7784849 to your computer and use it in GitHub Desktop.
Wordpress sanitize title to normal text
This file contains 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
function sanitize_to_normal_text($sanitize) { | |
$normal_text = str_replace("-"," ",$sanitize); | |
return ucwords($normal_text); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment