WordPress Ping Optimizerプラグインで、下記のようなエラーが出た場合の対処方法を説明します。
“Warning: count (): Parameter must be an array or an object that implements Countable in /home/gerrysey/domains/wncselfdefense.com/wp-content/plugins/wordpress-ping-optimizer/cbnet-ping-optimizer.php on line 533 ”
ダッシュボードのプラグイン→プラグインからWordPress Ping Optimizerを選択し、
該当の533行目を確認すると
該当箇所は$ pingCount = count ($ this-> cbnetpo_future_pings); が見つかります。
この行の先頭に//をつけてコメントアウトします。
そして、これを以下のように変更しましょう。
$pingCount = $this->cbnetpo_future_pings ? count( $this->cbnetpo_future_pings ) : 0;
以上で終了です。