Menambahkan CSS di Halaman Admin WordPress – Buka file functions.php theme Anda, kemudian paste code dibawah ini :
add_action('admin_head', 'my_custom_csss');
function my_custom_css() {
echo '<style>
body, td, textarea, input, select {
font-family: "Lucida Grande";
font-size: 12px;
}
</style>';
}