Skip to content

Instantly share code, notes, and snippets.

View erlendmr's full-sized avatar

Erlend Ribe erlendmr

View GitHub Profile
@erlendmr
erlendmr / WP: wp-query-ref.php
Last active April 16, 2021 16:21 — forked from luetkemj/wp-query-ref.php
WordPress Query Comprehensive Reference
<?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.5.1/wp-includes/query.php
*/
$args = array(
@erlendmr
erlendmr / js-moving-from-jquery-to-vanilla-js.md
Last active September 9, 2020 11:05 — forked from liamcurry/gist:2597326
Moving from jQuery to Vanilla JS

Moving from jQuery

Events

// jQuery
$(document).ready(function() {
  // code
})