Last active
August 29, 2015 13:57
-
-
Save wpspeak/9574789 to your computer and use it in GitHub Desktop.
Change the number of Related Posts displayed under your posts
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
<?php | |
function jetpackme_more_related_posts( $options ) { | |
$options['size'] = 6; | |
return $options; | |
} | |
add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_more_related_posts' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Credit: http://jetpack.me/support/related-posts/customize-related-posts/