Skip to content

Instantly share code, notes, and snippets.

View chrisdc's full-sized avatar

Christopher Crouch chrisdc

View GitHub Profile
@chrisdc
chrisdc / plugin.php
Created July 31, 2014 12:51
Wordpress Plugin Template
<?php
/**
* Plugin Name: My Plugin
* Plugin URI: https://example.com/plugin/
* Description: An amazing WordPress plugin.
* Version: 1.0
* Author: [Author Name]
* Author URI: https://example.com/author/
* License: GPL2
* Text Domain: myplugin
@chrisdc
chrisdc / navigation.js
Last active June 16, 2016 15:39
An alternative navigation.js that makes dropdown menus keyboard accessible in _s.
/**
* navigation.js
*
* Handles toggling the navigation menu for small screens and enabling tab support for dropdown menus.
*/
( function() {
var container, button, menu, links;
container = document.getElementById( 'site-navigation' );
if ( ! container )
@chrisdc
chrisdc / Responsive-Order-Table.markdown
Created June 16, 2014 08:14
A Pen by Christopher Crouch.