Rating: 5 stars
I downloaded the plugin but did not install it when I saw the number of files.
It might be great, I won’t say anything on it, I just wanted to share a few lines of code that did the job for me instead:
if (defined('WP_DEBUG') and true === WP_DEBUG) {
// add a green dot at the bottom left of the screen
// when WP_DEBUG in wp-config is true
function devTag () {
echo '<div style="background:green;border-radius:10px;bottom:20px;height:10px;left:20px;position:fixed;width:10px;z-index: 9999;"></div>';
}
add_action('wp_body_open', 'devTag');
}
]]>
Rating: 5 stars
Just what I was looking for. Adding this to my favorites.
]]>Rating: 5 stars
Installed this on my website when I was developing it, and it’s been a very handy yet simple tool for me. It’s now part of my toolkit for when I am developing WordPress websites.
]]>