Skip to content

Instantly share code, notes, and snippets.

@aligundogdu
Created December 5, 2013 18:01
Show Gist options
  • Save aligundogdu/7810205 to your computer and use it in GitHub Desktop.
Save aligundogdu/7810205 to your computer and use it in GitHub Desktop.
add_filter("the_title","mapStringConvert");
function mapStringConvert($url){
$s = array("×","&","×");
$d = array("x","&","X");
return str_replace($s,$d,$url);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment