View Single Post
Old 06-24-2011, 12:12 PM  
scouser
marketer.
 
Industry Role:
Join Date: Aug 2006
Location: bcn
Posts: 2,280
u can also write a wp plugin to do this really easily

something like this (untested)


add_filter('the_content','myreplacer');
function myreplacer($s) { return str_replace('from','to',$s); }


will want to add the_extract possibly too to add_filter.
scouser is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote