Some nice plugin for autoblog mania

gundamwing

Supreme Member
Joined
Sep 18, 2008
Messages
1,294
Reaction score
935
re.place

re.place is a module wich acts as a content filter. It searches for pre-defined regular expressions and replaces matches with pre-defined replacements.

ive use this plugin to mass deactivate URL Linked text inside posts

You can try re.place plugin:
Code:
http://wordpress.org/extend/plugins/replace/

As a wild guess:

Search for:
<a [^>]*>([^<]*)<\/a>

Replace with:
any


Explanation:
Search for "<a" followed by any number of any letters but ">", followed by ">", followed by any number of any letters but "<", followed by "</a>". And remember parenthesed sequence of letters.

And replace matched string with remembered sequence.
 
Do you usually use any specific plugins for premium autoblogs?? :P Just curious to know. . Thanks
 
Back
Top