Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 20, 2012 14:59
Show Gist options
  • Save billerickson/2758408 to your computer and use it in GitHub Desktop.
Save billerickson/2758408 to your computer and use it in GitHub Desktop.
<?php
/**
* Display Posts - Exclude Current Post
*
* @author Bill Erickson
* @link http://wordpress.org/extend/plugins/display-posts-shortcode/
*
* @param array $args
* @return array
*/
function be_exclude_current_post( $args ) {
if( is_singular() && !isset( $args['post__in'] ) )
$args['post__not_in'] = array( get_the_ID() );
return $args;
}
add_filter( 'display_posts_shortcode_args', 'be_exclude_current_post' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment