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: Plugin Header
Last active October 11, 2015 10:47 — forked from luetkemj/gist:2002921
Starter snippet
/*
Plugin Name:
Plugin URI: http://luetkemj.com/
Description:
Author: Mark Luetke
Author URI: http://luetkemj.com
Version: 1.0
*/
@ajiseco
ajiseco / WP: CSS
Last active October 11, 2015 10:38 — forked from luetkemj/style.css
Wordpress classes
/* =============================================================================
WordPress WYSIWYG Editor Styles
========================================================================== */
.entry-content img {
margin: 0 0 1.5em 0;
max-width: 100%;
height: auto;
}
.alignleft, img.alignleft {
@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;
}