Created
July 23, 2014 17:43
-
-
Save kraftbj/c04ea9f0861eabc79065 to your computer and use it in GitHub Desktop.
Jetpack Related Posts, filter by date
This file contains hidden or 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
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