Skip to content

Instantly share code, notes, and snippets.

View mhull's full-sized avatar

Michael Hull mhull

View GitHub Profile
@mhull
mhull / _0.key-template.html
Last active December 13, 2016 16:44
Playing audio files using JS and HTML, experimentations based on JavaScript30 Day 1
<!-- Key template -->
<script type='text/html' id='key-template'>
<kbd>{{ key.key }}</kbd>
<span class='sound'>{{ key.name }}</span>
<audio src="sounds/{{ key.name }}.wav"></audio>
</script>
@mhull
mhull / .Acme-Plugin.php
Last active August 11, 2016 15:23
A WordPress plugin example using PHP namespaces and autoloading
<?php
#! /acme-plugin/acme-plugin.php
/**
* Plugin Name: ACME Plugin
* Description: A WordPress plugin example using PHP namespaces and autoloading
* Version: 0.0.0
* Author: Michael Hull
* Author URI: https://resoundingechoes.net
*/
@mhull
mhull / .WordPress-Using-hooks.php
Last active June 5, 2016 12:13
Code examples from my Asheville WordCamp 2016 talk entitled "Using Hooks (and creating your own)"
<?php
/**
* Attempting to register a post type within a plugin, without using a hook,
* results in a fatal error
*/
$args = array(
... etc ...
);
register_post_type( 'my_post_type', $args );
<?php
/**
* The `Helping_Friendly_Post` class is an exercise in thinking about extending the `WP_Post` class
*
* @see https://github.com/mhull/helping-friendly-plugin/blob/master/lib/class-hphp-post.php
*/
/**
* To get a new extended post by ID
*/
@mhull
mhull / Members_manage_roles_items.php
Last active May 25, 2016 23:24
Filter roles list in the Members plugin
<?php
/**
* Filter the roles table items on the Users > Roles screen
*
* @param array $roles List of role "slugs" being shown in the table
* @param string $role_view View type for current screen (e.g. all, mine, active, etc)
*
* @return array The filtered $roles array
*/
add_filter( 'members_manage_roles_items', 'my_manage_roles_items', 10, 2 );