Thread
:
search and replace part of url in wordpress posts??
View Single Post
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
View Public Profile
Visit scouser's homepage!
Find More Posts by scouser