Created
March 15, 2014 22:25
-
-
Save wpspeak/9574831 to your computer and use it in GitHub Desktop.
Reposition Jetpack Related Posts Above Post Content
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_move_related_posts_to_top( $options ) { | |
$options['show_above_content'] = true; | |
return $options; | |
} | |
add_filter( 'jetpack_relatedposts_filter_options', 'jetpackme_move_related_posts_to_top' ); |
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/