Advertisement
Guest User

IS SUpport

a guest
Jun 28th, 2013
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. //adds Jetpack Infinite Scroll Module support for search queries and pages
  3.  
  4. function tweakjp_custom_is_support() {
  5.     $supported = current_theme_supports( 'infinite-scroll' ) && ( is_home() || is_archive() || is_search() || is_page( 'new' ) );
  6.  
  7.     return $supported;
  8. }
  9. add_filter( 'infinite_scroll_archive_supported', 'tweakjp_custom_is_support' );
  10.  
  11.  
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement