【WORDPRESS】管理画面で特定のカスタム投稿編集画面にCSSを適用させる方法
WORDPRESS管理画面で特定のカスタム投稿の編集画面にのみCSSを適用させる方法をご紹介します。
ソース
functions.php
if($_GET[post_type] == '【カスタム投稿名】'){
function admin_style_custom() {
echo '
【CSS記述】
'.PHP_EOL;
}
add_action('admin_print_styles', 'admin_style_custom');
}
例:カスタム投稿「news」の新規カテゴリ「説明」を非表示にする
functions.php
if($_GET[post_type] == 'news'){
function admin_style_custom() {
echo '
<style>
div.term-description-wrap{
display:none;
}
</style>
'.PHP_EOL;
}
add_action('admin_print_styles', 'admin_style_custom');
}