27 lines
541 B
PHP
27 lines
541 B
PHP
<?php
|
|
/**
|
|
* Theme Tools: Infinite Scroll functions.
|
|
*
|
|
* @package automattic/jetpack
|
|
*/
|
|
|
|
/**
|
|
* The function doesn't do anything.
|
|
*
|
|
* @deprecated 13.9
|
|
*
|
|
* @return void
|
|
*/
|
|
function jetpack_load_infinite_scroll_annotation() {}
|
|
|
|
/**
|
|
* Prevent IS from being activated if theme doesn't support it
|
|
*
|
|
* @deprecated 13.9 The function is no longer in use.
|
|
*
|
|
* @filter jetpack_can_activate_infinite-scroll
|
|
* @return bool
|
|
*/
|
|
function jetpack_can_activate_infinite_scroll() {
|
|
return (bool) current_theme_supports( 'infinite-scroll' );
|
|
}
|