前提・実現したいこと
wordPressのカスタム投稿画面のカスタムフィールドにcssを適用したいのですが、
css自体を読み込むことが出来ません。
投稿画面をキャッシュをクリアしても読み込めず。。
なお、editor-style.cssはfunctions.phpと同階層(テーマ直下)に配置しています。
宜しくお願い致します。
PHP(functions.php)
//css読込
function css_setting() { add_editor_style('editor-style.css'); } add_filter('admin_init', 'css_setting'); //画面に表示するカスタムフィールド function insert_custom_fields() { <form method="post" action="admin.php?page=site_settings"> <p class="custom-item">名前</p> (略) </form> }
読み込み、適用させたいcss(editor-style.css)
.custom-item { font-weight: bold; font-size: 30px; }
補足情報(FW/ツールのバージョンなど)
WordPress 5.8.1
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。