Created
May 20, 2012 14:59
-
-
Save billerickson/2758408 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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