Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created April 24, 2017 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/98e448f85b542740b58e522dd79cbfcf to your computer and use it in GitHub Desktop.
Save billerickson/98e448f85b542740b58e522dd79cbfcf to your computer and use it in GitHub Desktop.
<?php
/**
* Display Posts Shortcode - "current" class on current post
*
*/
function be_dps_current_class( $classes ) {
if( get_the_ID() == get_queried_object_id() )
$classes[] = 'current';
return $classes;
}
add_filter( 'display_posts_shortcode_post_class', 'be_dps_current_class' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment