I need to add some styles that only take effect in the WordPress Admin area, to do it, add this to functions.php
add_action('admin_head', 'my_custom_styles'); function my_custom_styles() { echo '<style> // Add styles here </style>'; }
I need to add some styles that only take effect in the WordPress Admin area, to do it, add this to functions.php
add_action('admin_head', 'my_custom_styles'); function my_custom_styles() { echo '<style> // Add styles here </style>'; }