Web制作

【WORDPRESS】管理画面で特定のカスタム投稿編集画面にCSSを適用させる方法

Written by o-saka

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');
}

この記事を書いた人

o-saka(@abiko41)

フリーランスでWEB作ったりロゴ作ったりしてます。
お仕事のご依頼等は下記フォームより承っております 。お気軽にお問い合わせください。

お問い合わせ