Skip to content

Instantly share code, notes, and snippets.

View cogdog's full-sized avatar

Alan Levine cogdog

View GitHub Profile
@cogdog
cogdog / dailyblank-seed-counts
Created May 23, 2016 20:05
Daily Blank Seed Counts
<ol>
<?php
// This will back create the response counts and generate some random visit counts
// for a Daily blank site. Insert into the magic spot of page-debug.php, go to /debug on your
// site, let it do its work, then remove.
$args = array(
'posts_per_page' => -1,
'post_type' => 'post',
@cogdog
cogdog / gdrive-shortcode
Created December 11, 2014 21:11
Add options to gdrive shortcode
unction gdrive_shortcode( $atts, $content = null ) {
// options for different kinds of embeds, default is folder view
extract( shortcode_atts( array( "what" => "folder"), $atts));
switch ($what) {
case 'folder':
return '<iframe src="https://drive.google.com/embeddedfolderview?id=' . $content . '#list" frameborder="0" width="100%" height="500px" scrolling="auto"> </iframe>';
break;
case 'somethingelse':