Skip to content

Instantly share code, notes, and snippets.

@mikeyarce
Last active August 29, 2015 14:22
Show Gist options
  • Save mikeyarce/c3aab9a257710b7a7981 to your computer and use it in GitHub Desktop.
Save mikeyarce/c3aab9a257710b7a7981 to your computer and use it in GitHub Desktop.
function marce_allow_pages_for_relatedposts( $enabled )
{
if ( is_page() ) {
$enabled = true;
}
return $enabled;
}
add_filter( 'jetpack_relatedposts_filter_enabled_for_request', 'marce_allow_pages_for_relatedposts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment