Skip to content

Instantly share code, notes, and snippets.

@jerrylee
Created January 30, 2015 14:38
Show Gist options
  • Select an option

  • Save jerrylee/df3a87255f68b8fee5ea to your computer and use it in GitHub Desktop.

Select an option

Save jerrylee/df3a87255f68b8fee5ea to your computer and use it in GitHub Desktop.
Replace Phone Numbers on Site
function replacePhoneNum($content) {
$content = str_replace('OLDNUM', 'NEWNUM', $content);
$content = str_replace('OLDNUM2', 'NEWNUM2', $content);
return $content;
}
add_filter( 'the_content', 'replacePhoneNum' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment