Skip to content

Instantly share code, notes, and snippets.

View IslamAboAsd's full-sized avatar

Islam mahmoud IslamAboAsd

View GitHub Profile
@IslamAboAsd
IslamAboAsd / media-query.css
Created December 6, 2018 11:07 — forked from gokulkrishh/media-query.css
CSS Media Queries for Desktop, Tablet, Mobile.
/*
##Device = Desktops
##Screen = 1281px to higher resolution desktops
*/
@media (min-width: 1281px) {
//CSS
@IslamAboAsd
IslamAboAsd / wp-query-ref.php
Created July 25, 2018 09:58 — 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
*/