管理画面上の画像の表示サイズを変更する
functions.phpに以下のコードを追加します。
1 2 3 4 5 6 7 8 9 10 11 12 13 |
function add_admin_style() { if ( in_array( get_post_type(), array( 'カスタム投稿名', ) )){ echo ' <style> .smart-cf-upload-image {max-width:250px;height:auto} </style>'; } } add_action("admin_head", "add_admin_style",1); |
コメント