Tag: wordpress tricks
-
my favorite new WordPress trick
this little functions.php hack makes me all giddy… use this to rebrand your WordPress back-end with your own logo: //hook the administrative header output add_action(‘admin_head’, ‘my_custom_logo’); function my_custom_logo() { echo ‘ ‘; } and here’s what it would look like in action: by default, the WP logo is 32px square. so what do you do…
-
WordPress tip: How to upgrade all your plugins in one go
If you haven’t upgraded your WordPress blog to 2.9 (actually 2.9.1 as of the time of this writing), you should. With the 2.9 update, the people at WP have implemented a feature that I’ve been pining for for some time. The only problem is it’s not where you’d think it might be. If you do…