Creating a Flipping Countdown Clock

….flipthis { height: 50px; width: 50px; background: #ff0000; -webkit-animation: flipthis 5s; -moz-animation: flipthis 5s; animation: flipthis 5s; color: #fff; font-size: 40px; } @-webkit-keyframes flipthis { 0% { -webkit-transform: rotateX(0deg); /*…

Writing Nginx Redirects for WordPress

…the tip Michael! Here’s the entire updated block. server { listen 80; server_name olddomain.com www.olddomain.com; rewrite ^/.*\.html$ newdomain.com permanent; rewrite ^/blog/(.*)$ http://newdomain.com/$1 permanent; rewrite ^/blog http://newdomain.com permanent; rewrite ^ $scheme://newdomain.com$request_uri…

Automating WordPress with WP-CLI Aliases

…ssh: user@siteone.com path: /srv/www/siteone.com @sitetwo: ssh: user@sitetwo.com:2222 path: /srv/www/sitetwo.com @sitethree: ssh: user@sitethree.com path: /srv/www/sitethree.com @sitefour: ssh: user@sitefour.com path: /srv/www/sitefour.com @wpengine – @siteone – @sitetwo @spinupwp – @sitethree – @sitefour You…

Setting Up A Local WordPress Environment with Vagrant

…VVV extra simple. To do that you’ll just need to run ruby -e “$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)” in Terminal. Once that is done installing we’ll be able to use the command

Pin It on Pinterest