Anyone who owns, builds, manages, or hosts WordPress sites should be obsessed with security. It’s not that WordPress isn’t a safe platform to build websites with. It’s just that, being the most popular and widely used CMS in the world, WordPress is an easy target for hackers. This is why WordPress blogs can’t and shouldn’t […] View original post at …
The Ultimate Guide to WordPress Page Templates
One of the templates that I always include in any theme I code is the page.php file. This is the template that WordPress will use for creating static pages. It’s useful to have a dedicated page.php file instead of falling back to index.php because you’ll need your pages to display slightly different content from single […] View original post at …
Learn How to Add Custom JavaScript to WordPress the Right Way
You’ve taken time to learn how to use JavaScript in WordPress. You’ve also picked up a number of useful JavaScript libraries and resources along the way to streamline coding with it. But now what do you do with the skills you’ve acquired? There are a number of reasons why you might want to add custom […] View original post at …
Using WPMU DEV’s Plugins to Manage Your WordPress Site
Creating a new website is exciting. Installing WordPress, choosing your theme, activating plugins and creating your first posts is guaranteed to give you a burst of energy. It’s an undeniable fact that a high proportion of sites and blogs don’t last very long after this first burst of energy. But you don’t want yours to […] View original post at …
Do You Know Why Hackers Are Targeting Your WordPress Site?
As we discover better ways to secure WordPress websites, it’s easy to feel a bit more relaxed about the whole thing… which is both good and bad. It’s good because it means we trust the tools and services we’ve invested in to harden security in WordPress. It’s bad though when we mistakenly confuse the tightening […] View original post at …
The Ultimate Guide to DNS for WordPress
DNS can be a headache. It’s one of those aspects of website management that can either be a breeze or take days to sort out. I should know – I recently spent a week trying to transfer a domain name, which eventually involved failed redirects, htaccess editing and the site going down! Luckily it’s fixed […] View original post at …
WordPress Development: Working with Arrays
If you’re creating variables to save values in your WordPress code, there may well come a time when it’s more efficient for you to use an array. An array (or more specifically, an array of variables) lets you save multiple pieces of data using just one variable. It means you can save multiple records in […] View original post at …
Code Your Own Autosuggest Enabled Advanced Search WordPress Plugin
Want to add advanced search functionality without depending on third-party plugins or themes? Build your own advanced WordPress Search Plugin with support for autosuggest, custom post types, taxonomies, custom fields, and caching from the ground up. In this article, I’ll show you how to build an object-oriented plugin to add a shortcode-based advanced search form […] View original post at …
How to Do Video SEO for Your WordPress Site
As consumer demand for video content grows, the WordPress sites you build will have to accommodate for that demand. This means creating high-quality video content, ensuring that you have enough bandwidth for it to play without issue, and placing it within prime real estate where it’s bound to get noticed on the website. There’s also […] View original post at …
Adding Styling via the Customizer Without Adding CSS to the Page
The WordPress Customizer is an incredibly powerful and useful tool. By incorporating it into your themes and plugins, you give your users more flexibility and simplify design, layout and content customization. However, it does have its drawbacks. One of these is the fact that any styling you add directly via the customizer will be output […] View original post at …