Skip to content

Instantly share code, notes, and snippets.

@keithdevon
keithdevon / member-archive.php
Created July 25, 2012 10:33
The member archive show more
<?php
/* Archive listings */
global $slt_post_type_object, $slt_banner_id;
// Order resource by title ???? not working
if ( is_post_type_archive( 'knowledge' ) )
query_posts( 'post_type=member&orderby=post_title' );
// knowledge filter?
@keithdevon
keithdevon / 0_reuse_code.js
Created August 6, 2014 14:31
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@keithdevon
keithdevon / shift_ordered_list_html
Created August 6, 2014 14:49
ordered list #shift #tag #list
<ol class="list-ordered">
<li class="list-item">List item 1</li>
<li class="list-item">List item 2</li>
<li class="list-item">List item 3</li>
<li class="list-item">List item 3</li>
</ol>
@keithdevon
keithdevon / cpts_in_main_query
Created August 13, 2014 13:29
Custom post types in home and blog pages
// Add custom post types to the home and blog pages
// change 'cpt1' and 'cpt2' to your post type names
add_filter( 'pre_get_posts', 'my_get_posts' );
function my_get_posts( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( 'post_type', array( 'post', 'cpt1', 'cpt2' ) );
@keithdevon
keithdevon / full-screen-bg
Created August 22, 2014 13:54
Full screen background images
html {
background: url('http://placebear.com/1200/800') no-repeat center center fixed;
background-size: cover;
height: 100%;
overflow: hidden;
}
body {
height:100%;
overflow: scroll;
@keithdevon
keithdevon / backgroundsize.min.htc
Created August 22, 2014 15:30
Full screen background images 2
<!-- background-size-polyfill v0.2.0 | (c) 2012-2013 Louis-Rémi Babé | MIT License -->
<PUBLIC:COMPONENT lightWeight="true">
<PUBLIC:ATTACH EVENT="oncontentready" ONEVENT="o.init()" />
<PUBLIC:ATTACH EVENT="ondocumentready" ONEVENT="o.init()" />
<PUBLIC:ATTACH EVENT="onpropertychange" ONEVENT="o.handlePropertychange()" />
<PUBLIC:ATTACH EVENT="ondetach" ONEVENT="o.restore()" />
<PUBLIC:ATTACH EVENT="onresize" FOR="window" ONEVENT="o.handleResize()" />
<PUBLIC:EVENT NAME="onbackgroundupdate" ID="updateEvent" />
<script type="text/javascript">
var o;!function(a,b){var c=/url\(["']?(.*?)["']?\)/,d=/^\s\s*/,e=/\s\s*$/,f=/\s\s*/g,g=/%$/,h={top:0,left:0,bottom:1,right:1,center:.5},i=a.document,j="data:image/gif;base64,R0lGODlhAQABAIABAP///wAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==",k="background-size-polyfill",l=function(){},m=100,n,p,q,r;function s(){var b=i.createElement("div"),c=i.createElement("img"),d=b.style,e=a.style,f=a.currentStyle,g=a.bgsExpando,h=a.firstChild;g&&(g.restore&&(e.backgroundImage=g.restore.back
@keithdevon
keithdevon / lazy-load
Last active December 22, 2017 00:52
Lazy loading WordPress images
// make sure this script is called in the footer of your document
function inView(image){
var $image = jQuery(image),
view_top = jQuery(window).scrollTop() - 300,
view_bottom = view_top + jQuery(window).height() + 600,
height = $image.height(),
_top = $image.offset().top,
_bottom = _top + height;
return height > 0 && _top <= view_bottom && _bottom >= view_top;
@keithdevon
keithdevon / custom-template.php
Created September 24, 2014 10:27
Load WordPress page templates from a plugin
// This is the page template file
@keithdevon
keithdevon / image.html
Created September 25, 2014 12:36
Responsive vertically centered images
<div class="responsive-container responsive-container--square">
<img class="vertically-centered" src="path/to/image.jpg" />
</div>
@keithdevon
keithdevon / manual-gravity-forms
Created September 25, 2014 21:05
Manually create entries and send notifications with Gravity Forms
<?php
// Manually create entries and send notifications with Gravity Forms
$form_id = 10;
// add entry
$entry = array(
"form_id" => $form_id,
"1" => "Entry for field ID 1",