Skip to content

Instantly share code, notes, and snippets.

@kraftbj
Created February 23, 2016 16:24
Show Gist options
  • Select an option

  • Save kraftbj/b65a429e6efef9984b07 to your computer and use it in GitHub Desktop.

Select an option

Save kraftbj/b65a429e6efef9984b07 to your computer and use it in GitHub Desktop.
Insert generic related posts when none returned
<?php
add_filter( 'jetpack_relatedposts_filter_hits', 'kraft_add_default_posts' );
function kraft_add_default_posts( $ids ) {
if ( empty( $ids ) ){
$ids = array( 123, 456, 789 );
}
return $ids;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment