If you debug by printing things to the wp-admin, then you probably find this as annoying as I do. Add this to your functionality plugin!
add_action( 'admin_enqueue_scripts', 'friendly_debug_for_wp_admin' ); function friendly_debug_for_wp_admin() { ?> <style> #adminmenuback { position: relative !important; } </style> <?php }
2 responses to “If you find this as annoying as I do…”
Debug Bar, for the win! https://wordpress.org/plugins/debug-bar/
It turns orange and you can see the output in a nice format.
Good idea — I’ve been meaning to dive into that plugin for a while now