Skip to content

Instantly share code, notes, and snippets.

View ajiseco's full-sized avatar

Ajiseco ajiseco

  • Orlando, Fl
View GitHub Profile
@ajiseco
ajiseco / wp-query-ref.php
Created October 7, 2012 01:01 — forked from luetkemj/wp-query-ref.php
WP: Query $args
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.com
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query
* Source: http://core.trac.wordpress.org/browser/tags/3.3.1/wp-includes/query.php
*/
$args = array(
@ajiseco
ajiseco / gist:3846718
Created October 7, 2012 01:01 — forked from luetkemj/gist:2031976
CSS: Inline Block Hack
.inline-block {
display: inline-block;
/* IE7 hack to mimic inline-block on block elements */
*display: inline;
*zoom: 1;
}