Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save chaselivingston/cfa227838910503ccf26f7c3425ebe5e to your computer and use it in GitHub Desktop.
Save chaselivingston/cfa227838910503ccf26f7c3425ebe5e to your computer and use it in GitHub Desktop.
function jetpackme_exclude_related_post( $exclude_post_ids, $post_id ) {
// $post_id is the post we are currently getting related posts for
$exclude_post_ids[] = 871;
return $exclude_post_ids;
}
add_filter( 'jetpack_relatedposts_filter_exclude_post_ids', 'jetpackme_exclude_related_post', 20, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment