Skip to content

Instantly share code, notes, and snippets.

@wpspeak
Created March 15, 2014 22:25
Show Gist options
  • Save wpspeak/9574831 to your computer and use it in GitHub Desktop.
Save wpspeak/9574831 to your computer and use it in GitHub Desktop.
Reposition Jetpack Related Posts Above Post Content
<?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' );
@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