Conditions | 1 |
Paths | 1 |
Total Lines | 23 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
17 | function bitsy_jetpack_setup() { |
||
18 | // Add theme support for Infinite Scroll. |
||
19 | add_theme_support( 'infinite-scroll', array( |
||
20 | 'container' => 'main', |
||
21 | 'render' => 'bitsy_infinite_scroll_render', |
||
22 | 'footer' => 'page', |
||
23 | ) ); |
||
24 | |||
25 | // Add theme support for Responsive Videos. |
||
26 | add_theme_support( 'jetpack-responsive-videos' ); |
||
27 | |||
28 | // Add theme support for Content Options. |
||
29 | add_theme_support( 'jetpack-content-options', array( |
||
30 | 'post-details' => array( |
||
31 | 'stylesheet' => '_s-style', |
||
32 | 'date' => '.posted-on', |
||
33 | 'categories' => '.cat-links', |
||
34 | 'tags' => '.tags-links', |
||
35 | 'author' => '.byline', |
||
36 | 'comment' => '.comments-link', |
||
37 | ), |
||
38 | ) ); |
||
39 | } |
||
40 | add_action( 'after_setup_theme', 'bitsy_jetpack_setup' ); |
||
55 |