Skip to content

Instantly share code, notes, and snippets.

View jacobdubail's full-sized avatar

Jacob Dubail jacobdubail

View GitHub Profile
@jacobdubail
jacobdubail / WP: Register Taxonomy
Created June 5, 2012 16:49
WP: Register Taxonomy
add_action( 'init', 'create_book_taxonomies', 0 );
//create two taxonomies, genres and writers for the post type "book"
function create_book_taxonomies()
{
// Add new taxonomy, make it hierarchical (like categories)
$labels = array(
'name' => _x( 'Genres', 'taxonomy general name' ),
'singular_name' => _x( 'Genre', 'taxonomy singular name' ),
'search_items' => __( 'Search Genres' ),
@jacobdubail
jacobdubail / CSS - Colorbox
Created May 25, 2012 19:59
CSS: Colorbox
#colorbox,
#cboxOverlay,
#cboxWrapper { position:absolute; top:0; left:0; z-index:9999; overflow:hidden;}
#cboxOverlay { position:fixed; width:100%; height:100%;}
#cboxMiddleLeft,
#cboxBottomLeft {clear:left;}
#cboxContent { position:relative;}
#cboxLoadedContent { overflow:auto;}
#cboxTitle { margin:0;}
#cboxLoadingOverlay,
@jacobdubail
jacobdubail / gist:2571460
Created May 1, 2012 21:16
HTML: basicpage (static)
<!DOCTYPE html>
<!--[if lt IE 7 ]> <html class="ie ie6 no-js" > <![endif]-->
<!--[if IE 7 ]> <html class="ie ie7 no-js" > <![endif]-->
<!--[if IE 8 ]> <html class="ie ie8 no-js" > <![endif]-->
<!--[if IE 9 ]> <html class="ie ie9 no-js" > <![endif]-->
<!--[if gt IE 9]><!--><html class="no-js" ><!--<![endif]-->
<head>
@jacobdubail
jacobdubail / dabblet.css
Created January 11, 2012 03:33 — forked from TomMalbran/dabblet.css
CSS: Nice Tabs
/**
* Nice Tabs
*/
.tabrow {
position: relative;
text-align: center;
list-style: none;
margin: 0;
padding: 0;
@jacobdubail
jacobdubail / pubsub.js
Created October 14, 2011 22:57 — forked from ryanflorence/pubsub.js
JavaScript: Simple Pub/Sub
!function () {
var channels = {};
this.subscribe = function (channel, subscription) {
if (!channels[channel]) channels[channel] = [];
channels[channel].push(subscription);
};
this.publish = function (channel) {
if (!channels[channel]) return;