I hereby claim:
- I am ryan4021 on github.
- I am ryandennler (https://keybase.io/ryandennler) on keybase.
- I have a public key whose fingerprint is F567 ABFE FCCE 30BD 7091 86EB C695 DB36 A9FF 9656
To claim this, I am signing this object:
| <?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( |
| <?php | |
| /** | |
| * WordPress DB Class | |
| * | |
| * Original code from {@link http://php.justinvincent.com Justin Vincent ([email protected])} | |
| * | |
| * @package WordPress | |
| * @subpackage Database | |
| * @since 0.71 | |
| */ |
| <?php | |
| /** | |
| * Duplicate this file as many times as you would like, just be sure to change the | |
| * Empty_Widget class name to a custom name of your choice. Have fun! redrokk.com | |
| * | |
| * Plugin Name: Empty Widget | |
| * Description: Single Widget Class handles all of the widget responsibility, all that you need to do is create the html. Just use Find/Replace on the Contact_RedRokk_Widget keyword to rebrand this class for your needs. | |
| * Author: RedRokk Interactive Media | |
| * Version: 1.0.0 | |
| * Author URI: http://www.redrokk.com |
| // Fun little quiz | |
| Assuming this string: "January 5th, 2012" | |
| In the shortest amount of code possible, place: | |
| - 'January' within a $month variable | |
| - '5th' within a $day variable | |
| - '2012' within a $year variable. |
| # Last Change: 2012 Jan 05 10:48:29 | |
| # ~/.bashrc: executed by bash(1) for non-login shells. | |
| # see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
| # for examples | |
| # http://www.caliban.org/bash/ | |
| # Author: Sérgio Luiz Araújo Silva | |
| # Site: http://vivaotux.blogspot.com | |
| # twitter: http://www.twitter.com/voyeg3r | |
| # | |
| # ( O O ) |
| ( function( $, plugin ) { | |
| "use strict"; | |
| // Working with promises to bubble event later than core. | |
| $.when( someObjectWithEvents ).done( function() { | |
| console.log( 'AJAX request done.' ); | |
| } ) | |
| .then( function() { | |
| setTimeout( function() { | |
| console.log( 'AJAX requests resolved.' ); |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Filter the terms query SQL clauses. | |
| * | |
| * @see 'terms_clauses' filter in get_terms() wp-includes/taxonomy.php | |
| * | |
| * @since 0.1.0 | |
| * | |
| * @todo add filter for $allowed_orderby_keys |
| <?php | |
| /* From https://www.usps.com/send/official-abbreviations.htm */ | |
| $us_state_abbrevs_names = array( | |
| 'AL'=>'ALABAMA', | |
| 'AK'=>'ALASKA', | |
| 'AS'=>'AMERICAN SAMOA', | |
| 'AZ'=>'ARIZONA', | |
| 'AR'=>'ARKANSAS', |
| <?php | |
| /** | |
| * @author ThemePunch <[email protected]> | |
| * @link http://www.themepunch.com/ | |
| * @copyright 2015 ThemePunch | |
| */ | |
| if( !defined( 'ABSPATH') ) exit(); | |
| class RevSliderBaseAdmin extends RevSliderBase { |