Skip to content

Instantly share code, notes, and snippets.

@ziyahan
Last active December 30, 2015 05:49
Show Gist options
  • Save ziyahan/7784849 to your computer and use it in GitHub Desktop.
Save ziyahan/7784849 to your computer and use it in GitHub Desktop.
Wordpress sanitize title to normal text
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