WordPress Articles.

0

How We Fixed WordPress’ Missed-Schedule Post (by Refactoring a Large WordPress Site)

The skinny: We fixed missed-schedule posts by reducing the site’s code landscape, examining the hosting environment, and implemented a three-prong, bulletproof approach to ensuring posts publish on time. In the process we also trimmed megabytes of render-blocking CSS and JavaScript, changing the site’s performance measured by Google Lighthouse from 17 to 75. So, that’s nice….

Sweet, tell me more...

0

Reusable base CSS styles for easy responsive site structure

Don’t want a bloated framework you have to learn/master just to be able to build a robust site structure that breaks down nicely into RWD (responsive web design)? We don’t either. For most projects we use a few simple reusable CSS classes to make RWD much easier. Frameworks like HTML5 boilerplate or Zurb’s foundation are…

Give me the scoop...

0

Add custom CSS to WordPress Admin without a plugin

Do you want to style the WordPress Admin area without modifying WordPress core CSS files? So did we. Hacking WordPress core files is bad, because the hacks would be overwritten on the next WP update. (Son of a…!) But by placing this snippet in your theme’s functions.php file, these rules will stay intact on each…

Hmm, sounds interesting...