0

WP 3.5の新規インストールを行い、Padd SolutionsとboomのUraniumoidテーマを使用しようとすると、致命的なエラーが発生しました

Call to undefined method Padd_Twitter::SimplePie() in on line in /home/fxmypics/public_html/wp-includes/class-simplepie.php on line 3042

class-twitter.php調べたところ、defaults.php、フォルダfunctions.php内で「Padd_Twitter」が呼び出されているのUraniumoid\includesですが、直し方がわかりません。

4

1 に答える 1

0

解決策が見つからなかった人のために、これは私にとってはうまくいきました:

ファイル class-twitter.php で:

  • 56 行目の" $this->SimplePie(); " を " parent::__construct(); "に置き換えます。
  • 59 行目あたりを次のように置き換えます。 $this->set_feed_url('http://twitter.com/statuses/user_timeline/' . $username . '.rss'); $this- > set_feed_url('http://api.twitter.com/1/statuses/user_timeline.rss?screen_name=' . $username . '');

それは私のために働いた

于 2012-12-28T20:15:17.550 に答える