Skip to content

Instantly share code, notes, and snippets.

View sixlive's full-sized avatar

TJ Miller sixlive

View GitHub Profile

Keybase proof

I hereby claim:

  • I am sixlive on github.
  • I am sixlive (https://keybase.io/sixlive) on keybase.
  • I have a public key whose fingerprint is 584F E70F 15E5 4E38 28DD FC52 7371 D9F8 90BE 6170

To claim this, I am signing this object:

@sixlive
sixlive / get-youtube-code.php
Last active March 7, 2016 16:10
PHP: Gets the video code from a YouTube video URL.
<?php
/**
* Returns the ID of a YouTube Video URL
*
* This works with both the short and full URL.
*
* @param string $url The video URL
* @return string The video ID
* @author TJ Miller http://tjay.co
@sixlive
sixlive / content-list.md
Last active August 29, 2015 14:09
Test Post Content for WordPess Theming
  • Links (internal, external)
  • Heading (h1-h6)
  • Ordered Lists (ol)
  • Unordered Lists (ul)
  • Aligned Images (left, right, center)
  • Bold (strong)
  • Italic (em)
  • Underline (underline)
  • Address (address)
  • Blockquote (blockquote)
@sixlive
sixlive / wp-get-post-awesome-pagination.php
Last active August 29, 2015 14:07
WordPress: Pagination With Get Post Awesome Loop
<?php
// Setup vars for pagination.
$per_page = 10;
$current_page = ( intval( get_query_var('paged') ) ) ? intval( get_query_var( 'paged' ) ) : 1;
$offset = $per_page * ($current_page - 1);
// Config, subsitute / add whatever you need. Leave per_page and offset as the vars.
$sweet_args = [
'numberposts' => $per_page,
'post_type' => 'post',
@sixlive
sixlive / jquery.printDiv.js
Last active August 29, 2015 14:07
JS: Print Specific Content
( function($) {
/**
* Prints single div content. Adds a class to the body of 'js-print' for
* targeting specific styles.
*
* @return void
*/
$.fn.printDiv = function() {
var printContents = $(this).html();