twentyfifteen.php 884 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. /**
  3. * Infinite Scroll Theme Assets
  4. *
  5. * Register support for Twenty Fifteen.
  6. */
  7. /**
  8. * Add theme support for infinite scroll
  9. */
  10. function jetpack_twentyfifteen_infinite_scroll_init() {
  11. add_theme_support( 'infinite-scroll', array(
  12. 'container' => 'main',
  13. 'footer' => 'page',
  14. ) );
  15. }
  16. add_action( 'after_setup_theme', 'jetpack_twentyfifteen_infinite_scroll_init' );
  17. /**
  18. * Enqueue CSS stylesheet with theme styles for Infinite Scroll.
  19. */
  20. function jetpack_twentyfifteen_infinite_scroll_enqueue_styles() {
  21. if ( wp_script_is( 'the-neverending-homepage' ) ) {
  22. wp_enqueue_style( 'infinity-twentyfifteen', plugins_url( 'twentyfifteen.css', __FILE__ ), array( 'the-neverending-homepage' ), '20141022' );
  23. wp_style_add_data( 'infinity-twentyfifteen', 'rtl', 'replace' );
  24. }
  25. }
  26. add_action( 'wp_enqueue_scripts', 'jetpack_twentyfifteen_infinite_scroll_enqueue_styles', 25 );