Plugin to eliminate double posts in autoblog

roychuk

Junior Member
Joined
Nov 30, 2008
Messages
192
Reaction score
569
Is there a WP plugin to help eliminate getting the same content posted for autoblogs? I searched around and couldn't find any previous postings about it.

I'm getting some videos posted twice since they fall under multiple tags in wp-videotube or even the autoblog plugin.
 
no such blog plugin's as such but try updating the current plugin's or upgrade them...that helped me to avoid double posting may be that would also do you need..
 
If you use feedwordpress there is a duplicate content plugin that works with feedwordpress.

FeedWordPress

FeedWordPress Duplicate Post Filter

I am assuming you would be using RSS feeds to autoblog.
 
actually I"m using the videotube and autoblogged plugins for my autoblog but sometimes they pull in two or more of the same posts since they fall under the same keywords. I'll try the feedwordpress plugin you mentioned. Thanx.
 
hey I have an idea now...try changing the plugin and replace that with exactly the same kind of plugin, there 10-20 alternatives that are free to get for any plugin tht's already there in wordpress
 
daffy - I'm not sure what you mean.. why would replacing the plugin with the same plugin make a difference?
 
I actually had the same problem with WP-Videotube and found a quick and easy fix for this. See here:
Code:
http://linuxil.wordpress.com/2008/02/24/wp-o-matic-quick-dirty-duplicate-post-fix/

Note that this is for older versions of WP, in newer versions it works too but the line you have to edit changes. Simply do a search for
Code:
if ($post_name_check || in_array($post_name, $wp_rewrite->feeds) ) {
in the wp-includes/post.php file and add
Code:
return 0;
after that. Should do the trick.
 
what I meant was try replacing the same kinda plugin not the same use a plugin from a diffrent brand/company do you get it??
 
You will find $suffix = 2 twice in wp-includes/post.php
Replace $suffix = 2
With return 0;
 
Back
Top