compat
2 years ago
content-options
1 year ago
js
6 years ago
responsive-videos
1 year ago
site-logo
2 years ago
social-menu
2 years ago
content-options.php
1 year ago
devicepx.php
2 years ago
featured-content.php
2 years ago
infinite-scroll.php
1 year ago
responsive-videos.php
2 years ago
site-breadcrumbs.php
2 years ago
site-logo.php
2 years ago
social-links.php
2 years ago
social-menu.php
2 years ago
infinite-scroll.php
28 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Theme Tools: Infinite Scroll functions. |
| 4 | * |
| 5 | * @package automattic/jetpack |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * The function doesn't do anything. |
| 10 | * |
| 11 | * @deprecated 13.9 |
| 12 | * |
| 13 | * @return void |
| 14 | */ |
| 15 | function jetpack_load_infinite_scroll_annotation() {} |
| 16 | |
| 17 | /** |
| 18 | * Prevent IS from being activated if theme doesn't support it |
| 19 | * |
| 20 | * @deprecated 13.9 The function is no longer in use. |
| 21 | * |
| 22 | * @filter jetpack_can_activate_infinite-scroll |
| 23 | * @return bool |
| 24 | */ |
| 25 | function jetpack_can_activate_infinite_scroll() { |
| 26 | return (bool) current_theme_supports( 'infinite-scroll' ); |
| 27 | } |
| 28 |