WordPress3.0での、Commented entry list の不具合について
(2016.7.16追記)
現在は、すでにこの不具合を修正をされたものが配布されています。
詳しくは「Commented entry list Plugin : 最近のコメントと最近のトラックバックを表示するプラグイン」で。
ずいぶん前の話題で恐縮ですが、WordPress を3.0以降にアップグレードしますと、Commented entry list プラグインが動かなくなり、最新のコメントの一覧が表示されなくなってしまいます。
その対処法が紹介されていましたので、私も参考に使わせていただきました。
ということで、こちらもメモ。
参考サイト様より、そのまま拝借させていただきました。ありがとうございます。
commented-entry-list.php を、以下のように修正します。
12行目。
global $wpdb, $tablecomments, $tableposts;
↓
global $wpdb;
$tablecomments = $wpdb->comments;
$tableposts = $wpdb->posts;
70行目。
global $wpdb, $tablecomments, $tableposts;
↓
global $wpdb;
$tablecomments = $wpdb->comments;
$tableposts = $wpdb->posts;