This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Generally look for prefers reduced motion | |
| * with a listener on the media query | |
| * as seen on: https://www.scottohara.me/note/2019/07/12/reduced-motion-video.html | |
| */ | |
| var motionQuery = matchMedia('(prefers-reduced-motion)'); | |
| function reducedMotionCheck() { | |
| if ( motionQuery.matches ) { | |
| // code to run if "reduced" is true | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @supports (color: var(--)) { | |
| ... | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # empty comment trash | |
| wp comment delete $(wp comment list --status=trash --format=ids) | |
| # delete all spam comments | |
| wp comment delete $(wp comment list --status=spam --format=ids) | |
| # show config | |
| wp config get | |
| # show db sizes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Code for showing correct client IP address | |
| if ( isset( $_SERVER['HTTP_X_FORWARDED_FOR'] ) ) { | |
| $zon_xforwarded = explode( ',', $_SERVER['HTTP_X_FORWARDED_FOR'] ); | |
| $_SERVER['REMOTE_ADDR'] = $zon_xforwarded[0]; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //Look for other responsivevoice instances | |
| /*if (window.parent != null) { | |
| var iframes = window.parent.document.getElementsByTagName('iframe'); | |
| for (var i = 0; i < iframes.length; i++) { | |
| //iframes[i].style.width = "300px" | |
| } | |
| }*/ | |
| if (typeof responsiveVoice != 'undefined') { | |
| console.log('ResponsiveVoice already loaded'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> | |
| <html> | |
| <head> | |
| <meta name="viewport" content="width=device-width, initial-scale=1"> | |
| <link href='http://fonts.googleapis.com/css?family=Roboto:400,700' rel='stylesheet' type='text/css'> | |
| <style> | |
| body { | |
| font-family: 'Roboto'; | |
| color: #444; | |
| height: 100%; |
git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git
cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| body { | |
| font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica, Arial, sans-serif; | |
| } |
NewerOlder