| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Lines | 10 |
| Ratio | 100 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 42 | public static function add_theme_support() { |
||
| 43 | add_theme_support( 'auto-load-next-post', array( |
||
| 44 | 'content_container' => 'main.post-wrap', |
||
| 45 | 'title_selector' => 'h1.entry-title', |
||
| 46 | 'navigation_container' => 'nav.post-navigation', |
||
| 47 | 'comments_container' => 'div#comments', |
||
| 48 | 'load_js_in_footer' => 'no', |
||
| 49 | 'lock_js_in_footer' => 'no', |
||
| 50 | ) ); |
||
| 51 | } // END add_theme_support() |
||
| 52 | |||
| 56 |