Skip to content

Instantly share code, notes, and snippets.

@qholzweg
qholzweg / wp_register.php
Created December 20, 2013 09:48
wordpress register
<?php
function my_scripts_method() {
wp_enqueue_style(
'foundation',
get_stylesheet_directory_uri() . '/ct/stylesheets/app.css',
array(),
false,
'all'
@qholzweg
qholzweg / get_posts.php
Last active October 6, 2018 11:06
Wordpress get_posts with thumb
<?php
$args = array('post_type' => array('page'), 'order' => 'ASC', 'orderby' => 'date'/*
to sort by custom fields
, 'meta_query' => array(
array(
'key' => 'meta',
'value' => true,
)
)
*/
@qholzweg
qholzweg / dist.css
Created December 19, 2013 09:46
basic distances
.m-0 {margin: 0;}
.mb-1 {margin-bottom: 1em !important;}
.mb-2 {margin-bottom: 2em !important;}
.mb-3 {margin-bottom: 3em !important;}
.mb-4 {margin-bottom: 4em !important;}
.mb-5 {margin-bottom: 5em !important;}
.mt-1 {margin-top: 1em;}
.mt-2 {margin-top: 2em;}
.mt-3 {margin-top: 3em;}
@qholzweg
qholzweg / gist:6918205
Last active September 25, 2022 19:46 — forked from tarmann/gist:5563532
CSS: Image replacement
.ir {
font: 0/0 "image replace";
position: relative;
display: inline-block;
background-repeat: none;
}