プラグインをアクティブにすると、ページコメントの代わりにSEO Facebookコメントが表示され、エラーが発生します。
致命的なエラー:0行目の不明でスタックフレームなしで例外がスローされました
次に、WP_DEBUGを有効にすると、次のようになります。
( ! ) Notice: register_uninstall_hook was called incorrectly. Only a static class method or function can be used in an uninstall hook. Please see Debugging in WordPress for more information. (This message was added in version 3.1.) in C:\wamp\www\wp-includes\functions.php on line 2944
Call Stack
# Time Memory Function Location
1 0.0005 365640 {main}( ) ..\index.php:0
2 0.0008 369280 require( 'C:\wamp\www\wp-blog-header.php' ) ..\index.php:17
3 0.0013 389656 require_once( 'C:\wamp\www\wp-load.php' ) ..\wp-blog-header.php:12
4 0.0019 405168 require_once( 'C:\wamp\www\wp-config.php' ) ..\wp-load.php:29
5 0.0028 508984 require_once( 'C:\wamp\www\wp-settings.php' ) ..\wp-config.php:92
6 0.2159 24384776 include_once( 'C:\wamp\www\wp-content\plugins\seo-facebook-comments\seofacebook.php' ) ..\wp-settings.php:195
7 0.2205 24806704 SEOFacebookComments->__construct( ) ..\seofacebook.php:594
8 0.2213 24816992 register_uninstall_hook( ) ..\seofacebook.php:95
9 0.2213 24817224 _doing_it_wrong( ) ..\plugin.php:679
10 0.2213 24818200 trigger_error ( ) ..\functions.php:2944
wp-content \ plugins \ seo-facebook-comments \ seofacebook.ph p行195
を確認すると:wp_register_style('fbSEOStylesheet', $fbSEOStyleURL);
これの何が問題になっているのか、またはエラーを見つけるためにこれをデバッグし始めることができる場所はありますか?
WordPressの最新バージョンを使用します。
更新:プラグインディレクトリを検索すると、register_untilstall_hookのインスタンスが1つ見つかりました
register_activation_hook( __FILE__, array( &$this, 'install' ) );
register_deactivation_hook( __FILE__, array( &$this, 'remove' ) );
register_uninstall_hook( __FILE__, array( &$this, 'remove' ) );
更新2:次のエラーを修正できました:https ://stackoverflow.com/a/11976433/560287しかし、コメントセクションに元のエラーが表示されます。これが何であるかについてのアイデアはありますか?