Skip to content

Instantly share code, notes, and snippets.

View mlteal's full-sized avatar
🦄
Writing code

Maura Teal mlteal

🦄
Writing code
View GitHub Profile
@johnbillion
johnbillion / wp_mail.md
Last active June 3, 2024 13:31
WordPress Emails

WordPress Emails

This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.

This documentation has moved here: https://github.com/johnbillion/wp_mail

@tddewey
tddewey / _mixin-edge-skew.scss
Created June 29, 2014 19:07
Edge skew mixin from GeekyLibrary
// edge-skew
// Applies a psudo element ot the left or right of an element
// that skews that edge. Basically adds a triangle of a given
// color in a direction
// @param $direction 'left'|'right'
// @param $color color
@mixin edge-skew( $direction, $color ) {
position: relative;
$pseudo: if($direction == left, before, after);
@bradwestfall
bradwestfall / gist:002312c3628eac9cc215
Last active July 11, 2022 15:09
Beginner JavaScript
@trepmal
trepmal / ajax-password-protected.php
Last active July 16, 2017 12:14
[WordPress] Ajax Password Protected Posts. Updated and moved to https://github.com/trepmal/ajax-password-protected
<?php
/*
Plugin Name: Ajax Password Protected
Plugin URI: https://github.com/trepmal/ajax-password-protected
Description: Ajax-ified password-protected form
Version: 0.1
Author: Kailey Lampert
Author URI: http://kaileylampert.com
Copyright (C) 2012 Kailey Lampert