Skip to content

Instantly share code, notes, and snippets.

View danstramer's full-sized avatar

Dan Stramer danstramer

View GitHub Profile
@diggeddy
diggeddy / custom-loop-shortcode-gpp.php
Last active December 26, 2021 20:49
Custom Loop Shortcode for displaying a GPP Content Template
<?php
function db_custom_loop_shortcode($atts, $content = null) {
global $post;
// Set query args
$args = array(
'post_type' => 'post',
'posts_per_page' => '3',
'post__not_in' => array( $post->ID ), // don't display current post
);
// Optional arguments for setting category term relationship on single post