A mixin for writing @font-face rules in SASS.
Create a font face rule. Embedded OpenType, WOFF2, WOFF, TrueType, and SVG files are automatically sourced.
@include font-face(Samplino, fonts/Samplino);| <?php | |
| /** | |
| * Filter for adding wrappers around embedded objects | |
| */ | |
| function responsive_embeds( $content ) { | |
| $content = preg_replace( "/<object/Si", '<div class="embed-container"><object', $content ); | |
| $content = preg_replace( "/<\/object>/Si", '</object></div>', $content ); | |
| /** | |
| * Added iframe filtering, iframes are bad. |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |