Category: Wordpress Development
-
3 Simple Steps to Protecting your WordPress Website with SSL / HTTPS.
There are tons of options out there to protect yourself with https and it can be daunting at first, but I will give my view on it and how I’ve managed dozens of WordPress websites with HTTPS over the years. Before we go any further you must obtain a SSL Certificate (usually done via your…
-
iPad Media Queries
iPad Media Queries (All generations – including iPad mini) Thanks to Apple’s work in creating a consistent experience for users, and easy time for developers, all 5 different iPads (iPads 1-5 and iPad mini) can be targeted with just one CSS media query. The next few lines of code should work perfect for a responsive…
-
Quick snippet to change all instances of WordPress URL
Sometimes you are moving a websites folder structure, or sometimes you are moving a website hosts. This quick and easy sql script will allow you to update all instances of the current URL with a new URL so moving wordpress sites is painless. UPDATE wp_options SET option_value = replace(option_value, ‘http://www.oldurl’, ‘http://www.newurl’) WHERE option_name =…