前提・実現したいこと
Wordpressの管理画面上部に”Notice: wp_enqueue_style was called incorrectly. ”のエラーが表示されます。
こちらのエラーを対処したいのですが解決策をご教示いただけませんでしょうか。
発生している問題・エラーメッセージ
Notice: wp_enqueue_style was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or login_enqueue_scripts hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.0.) in /home/***/***/DocumentRoot/wp-includes/functions.php on line 4201
該当のソースコード
functions.phpの該当ソースコード
if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) { wp_enqueue_style( 'wp-auth-check' ); wp_enqueue_script( 'wp-auth-check' ); add_action( 'admin_print_footer_scripts', 'wp_auth_check_html', 5 ); add_action( 'wp_print_footer_scripts', 'wp_auth_check_html', 5 ); } }
試したこと
上記サイトを参考に、functions.phpに'wp_enqueue_scripts'のアクションフックを以下のように追記しました。
if ( apply_filters( 'wp_auth_check_load', $show, $screen ) ) { wp_enqueue_style( 'wp-auth-check' ); wp_enqueue_script( 'wp-auth-check' ); add_action( 'wp_enqueue_scripts',<<<ここに追記 'admin_print_footer_scripts', 'wp_auth_check_html', 5 ); add_action( 'wp_print_footer_scripts', 'wp_auth_check_html', 5 ); } }
上記を実施しましたが結果は変わりませんでした。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。