Blog

Disable WordPress maintenance nag

In case of a WordPress multisite with a specific setup trying to run autoupdates, you could add the following to prevent the WordPress autoupdates: [php] define( 'WP_AUTO_UPDATE_CORE', false ); [/php] Hiding the automatic update messages in dashboard for site users and single site admins, you could disable the nag actions: [php] add_ac...

WordCamp The Netherlands – May 10-11

I'm flying to WordCamp The Netherlands  in 6 hours and I'm going to share my thoughts on the WordPress Code Architecture. I've been brainstorming on that subject for years, ever since I've started working with WordPress, being technically challenged compared to all the other programming languages and design patterns I was used to until the...

See you at WordCamp Norrköping next week

I'll be joining the fun at WordCamp Norrköping next week from Friday to Sunday: I'll be helping with the Contributor Day over the weekend and I'll give my Debugging WordPress talk to the dev community there. If you're into WordPress development or interested in a secure and scalable managed WordPress hosting, meet me there and I'd be h...

update_blog_option()

I was dealing with network DB option filtering few weeks back and I was unable to find a proper way to use update_option, update_site_option or any relevant function to update the main site's option value. I just found update_blog_option which is pretty cool and it does the following inside: [php] ... switch_to_blog( $id ); $return = upda...

WP Mentor, Helping and Community

Last month Matt from Matt Report launched a great site called WP Mentor. Setting up a mentorship program for the WordPress community is an incredible idea so kudos to Matt who made it happen :) If you can't see the value in that site, let me explain. Balance and Entertainment I've been helping people since I've started teaching classes in 2...

On WordPress and Working Smarter

Today I found two brilliant posts that I would like to share with as many people as possible. While everyone is focused on what the market says or what seems natural, occasionally there are many obvious factors that are left unnoticed and could affect our entire life and career. The first article that I've read was Morten's "WordPress is No...

My MVC Experiment for WordPress Plugins

I spent a few days last week working on a new plugin, trying to approach it from different angles and test a few development flows in a way that would possibly change the way I work. One of my experiments was related to building an MVC plugin for WordPress - and I failed to do that in a way that satisfies me. tl;dr - there are ways to build ...