Skip to content

Instantly share code, notes, and snippets.

View brashrebel's full-sized avatar

Kyle Maurer brashrebel

View GitHub Profile
@brashrebel
brashrebel / edd_grid.php
Last active November 15, 2016 12:50 — forked from pippinsplugins/edd_grid.php
sample Easy Digital Downloads Product Grid with Pagination
<?php get_header(); ?>
<div id="main-content" class="row store-template">
<div class="content clearfix">
<?php
$current_page = get_query_var('paged');
$per_page = get_option('posts_per_page');
$offset = $current_page > 0 ? $per_page * ($current_page-1) : 0;
$product_args = array(
'post_type' => 'download',
<?php
// CUSTOM BOOK QUERY
$post_id = get_the_ID();
$args = array(
//Type & Status Parameters
'post_type' => 'accomplishment',
'post_status' => 'publish',