Skip to content

Instantly share code, notes, and snippets.

@wycks
Created December 7, 2012 06:14
Show Gist options
  • Save wycks/4231143 to your computer and use it in GitHub Desktop.
Save wycks/4231143 to your computer and use it in GitHub Desktop.
The worst wordpress the_content filter ever created
<?php
function phonetic_fools($content){
$pieces = str_split($content);
foreach ($pieces as $piece => $noise) {
$fools = metaphone($noise);
$str = strtolower($fools);
$empty = '&nbsp; ' ; //weird
echo $str . $empty;
}
}
add_filter( 'the_content', 'phonetic_fools' );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment