WP Blog settings question

makingfastcash22

Senior Member
Joined
Feb 15, 2009
Messages
1,159
Reaction score
180
How do I set my blog to a no follow status?

Also is there a quick way to delete all of the pending comments from the database?
 
I think SEO Platinum plugin can set the nofollow status - not sure its retrospective though...

Delete all comments - try and plugin again - maybe search 'comments' in the plugin and see which ones allow for mass edit?
 
Use this plugin
Code:
http://wordpress.org/extend/plugins/nofollow-case-by-case/

and for your second question, go to your phpMyadmin and run the following SQL command on your database :
Code:
DELETE FROM wp_comments WHERE comment_approved = '0'

This will mass delete all pending comments, please first backup your db in case .
 
Back
Top