Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created July 23, 2014 17:43
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kraftbj/c04ea9f0861eabc79065 to your computer and use it in GitHub Desktop.
Save kraftbj/c04ea9f0861eabc79065 to your computer and use it in GitHub Desktop.
Jetpack Related Posts, filter by date
function jetpackme_related_posts_past_halfyear_only( $date_range ) {
$date_range = array(
'from' => strtotime( '-6 months' ),
'to' => time(),
);
return $date_range;
}
add_filter( 'jetpack_relatedposts_filter_date_range', 'jetpackme_related_posts_past_halfyear_only' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment