前提・実現したいこと
Costom Post Type UI にて'ニュース'を作成しました。
そのニュースの投稿画面にのみCSSを読み込ませたいのですが、反映されません。
発生している問題・エラーメッセージ
function.php 内
function my_add_editor_style() {
add_theme_support( 'editor-styles' );
add_editor_style( 'editor-style.css' );
}
add_action( 'after_setup_theme', 'my_add_editor_style' );
editor-style.css 内
h2 {(h2用 css)}
h3 {(h3用 css)}
h4 {(h4用 css)}
上記だと'ニュース'以外の'投稿'や'固定ページ'にもCSSが反映されてしまいます。
試したこと
なのでfunction.php 内を
if($_GET[post_type] == 'news'){
function my_add_editor_style() {
add_theme_support( 'editor-styles' );
add_editor_style( 'editor-style.css' );
}
add_action( 'after_setup_theme', 'my_add_editor_style' );
}
上記の様にした所、新規追加時にはcssが反映されたのですが、
更新時には反映がされません。
カスタム投稿の投稿画面にはcssは反映出来ないものでしょうか。
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
あなたの回答
tips
プレビュー