You’re plug-in is simple, elegant and it just works, which is presumably why you haven’t seen a pressing need to update.
As a result www.ads-software.com displays a banner at the top of your plug-ins homepage: “This plugin hasn’t been updated in over 2 years. It may no longer be maintained or supported and may have compatibility issues when used with more recent versions of WordPress.”
If you worked on the (admittedly minor) issues that some people have reported and released a version 1.01, your plugin would look as good as new.
Again I have no problem with the plugin itself, it works as advertised, except the advertisement now says it may not work. ??
]]>When this plugin is active, it adds this line to the head of all pages in admin:
<link rel="stylesheet" href="/wp-admin/css/upload.css" type="text/css" />
This was probably not intentional so I’ll skip all the reasons why it’s a bad idea. The issue is that it fills up error logs and puts additional HTTP requests to the server unnecessarily.
In fact, here’s a rewrite of your wb_admin_css function which uses the WP API better: https://pastebin.com/JFxDVHcD
]]>after ‘save settings’ is clicked, the changes on css is not saved and css remains as default :
/*wp-admin-theme*/
#header-logo {
background:transparent url(my-admin-logo.png) no-repeat scroll center center;
}
#update-nag {
display: none;
}
#footer-upgrade {
display: none;
}
Plugin works great with WP 3.2.1 – only issue I’ve found is that the stylesheet link included in the plugin code [file: wp-admin-theme-php] /wp-admin/css/upload.css was removed in WordPress 3.1.+ so the WP Admin Theme is creating a lot of 404s whenever the admin UI is viewed.
]]>First off, thank you for the elegant plugin.
Just wanted to comment on an issue I had with your plugin when using: define (‘FORCE_SSL_ADMIN’, true); in wp_config.php
The issue was that http gets used as the protocol instead of https. To resolve this I changed get_option(‘siteurl’) to the function site_url() in wp-admin-theme-options.php.
Thanks again for the plugin!
]]>