a€¢ SpamKarma is/was takes out the TigerSpice trackbacks – good. However I found that (unfortunately) SpamKarma also messes up the stock WP functionality of first/new commenter being moderated after which commenter can go straight through without moderation. With SK activated all new commenting got straight on without being paused for initial moderation – not good.
a€¢ Now returned to stock WP (no SK) but with the <moderate-trackback.php> plugin. Contents of which are (plaudits to author)…
‘<?php
/*
Plugin Name: Moderate Trackbacks
Plugin URI: https://mtdewvirus.com/code/
Description: Puts trackbacks not marked as ‘spam’ into moderation.
Author: Nick Momrik
Version: 1.2
Author URI: https://mtdewvirus.com/
*/
function mdv_moderate_trackback($approved) {
global $wp_query;
if (1 == $approved && $wp_query->is_trackback)
$approved = 0;
return $approved;
}
add_filter(‘pre_comment_approved’, ‘mdv_moderate_trackback’);
?>’
This is holding the TS people’s trackback attempts in the moderation queue (ie out of sight).
The problem seems to be the legacy posts (ie that have PingBack/TrackBack ticked). All new posts are going out with that unticked:~|
Got to go out now and leave the site running…