Skip to content

Instantly share code, notes, and snippets.

@tomharrigan
Last active December 17, 2015 20:56
Show Gist options
  • Save tomharrigan/66e8ebd241251b1e43f3 to your computer and use it in GitHub Desktop.
Save tomharrigan/66e8ebd241251b1e43f3 to your computer and use it in GitHub Desktop.
Remove is_single() from check of supported screens
add_filter( 'infinite_transporter_archive_supported', 'infinite_transporter_remove_single' );
function infinite_transporter_remove_single( $supported ) {
$supported = current_theme_supports( 'infinite-transporter' ) && ( is_home() || is_archive() || is_search() );
return $supported;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment