Skip to content

Instantly share code, notes, and snippets.

View stokesman's full-sized avatar

Mitchell Austin stokesman

View GitHub Profile
@daggerhart
daggerhart / .htaccess
Last active November 7, 2025 23:23
WordPress Rewrite API Examples
<IfModule mod_rewrite.c>
# enable rewriting
RewriteEngine on
# don't rewrite files that exist in the file system
RewriteCond %{REQUEST_FILENAME} !-f
# don't rewrite directories that exist in the file system
RewriteCond %{REQUEST_FILENAME} !-d
@motionharvest
motionharvest / sassextend.css
Last active September 6, 2017 19:09 — forked from antsa/sassextend.css
Sass Extend and Placeholder Selector Example
// =========================
// Example 1: using a @mixin
// =========================
// SCSS:
@mixin a_pink_box() {
float: left;
display: block;
color: pink;