Skip to content

Instantly share code, notes, and snippets.

@rmedinap
rmedinap / .gitignore
Created October 27, 2018 15:37 — forked from salcode/.gitignore
See https://salferrarello.com/wordpress-gitignore/ for the latest version of my WordPress .gitignore file
# -----------------------------------------------------------------
# .gitignore for WordPress
# Bare Minimum Git
# http://ironco.de/bare-minimum-git/
# ver 20150227
#
# This file is tailored for a WordPress project
# using the default directory structure
#
# This file specifies intentionally untracked files to ignore
@rmedinap
rmedinap / wp-query-ref.php
Created October 20, 2018 17:37 — forked from luetkemj/wp-query-ref.php
WP: Query $args
// This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.github.io
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php
*/
@rmedinap
rmedinap / dabblet.css
Created May 15, 2013 17:09 — forked from oli/dabblet.css
Applying two animations
/* Applying two animations */
/* ref: http://css-tricks.com/restart-css-animation/ */
/* (a little) more info: http://dabblet.com/gist/1656494 */
img {animation: spinning-logocat 2s;}
img:active {animation: spin-dat-cat 2s;}
@keyframes spinning-logocat {50%{transform:rotateY(180deg);}}
@keyframes spin-dat-cat {50%{transform:rotateY(180deg);}}