Problem When trying to log into a WordPress website, using the wp-login / wp-admin page - the page redirects back to the login page after entering in the username and…
When you need to run custom PHP code on your WordPress site often you're instructed to add it to the active theme’s functions.php file. The issue with this is that…
Local by Flywheel is a development tool which allows you to create WordPress sites on your computer. These sites can be used for developing or testing WordPress, plugins or themes.…
By default WordPress will automatically install minor updates - for example, 5.0.0 -> 5.0.1. This can be disabled in a number of ways - but remember, if you do this…
Every new install of WordPress comes with a number of themes. But often people install their own theme and wonder if these default themes can be safely removed. The short answer…
Often people are told to add custom functions to the active theme’s functions.php file. The issue with this is that each time the theme is updated you lose the changes…
By default when Internet Explorer is displaying a website that falls within a computers intranet zone the page is rendered in IE5 document mode - typically leaving the page looking…
In WordPress, the WPDB class is available for interacting with the database, for example reading or writing data. The PREPARE method is almost always used along with the WPDB. PREPARE…
At their simplest, an anonymous function is an unnamed function. There are many ways they can be used to simplify your PHP - but when it comes to WordPress I've…