Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
11 | function twentythirteen_infinite_scroll_init() { |
||
12 | add_theme_support( 'infinite-scroll', array( |
||
13 | 'container' => 'content', |
||
14 | 'footer' => 'page', |
||
15 | 'footer_widgets' => array( 'sidebar-1' ) |
||
16 | ) ); |
||
17 | } |
||
18 | add_action( 'after_setup_theme', 'twentythirteen_infinite_scroll_init' ); |
||
28 | add_action( 'wp_enqueue_scripts', 'twentythirteen_infinite_scroll_enqueue_styles', 25 ); |