Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Last active August 29, 2015 13:57
Show Gist options
  • Save wpspeak/9574789 to your computer and use it in GitHub Desktop.
Save wpspeak/9574789 to your computer and use it in GitHub Desktop.
Change the number of Related Posts displayed under your posts
<?php
function jetpackme_more_related_posts( $options ) {
$options['size'] = 6;
return $options;
}
add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_more_related_posts' );
@wpspeak
Copy link
Author

wpspeak commented Mar 15, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment