wpseo_indexables_buffer_size
wpseo_indexables_buffer_size
Appears in: wordpress-seo.19.10, wordpress-seo.19.11, wordpress-seo.19.13, wordpress-seo.19.7.1, wordpress-seo.19.7.2, wordpress-seo.19.8, wordpress-seo.19.9, wordpress-seo.20.1, wordpress-seo.20.2.1, wordpress-seo.20.3
Hook Type: filter
Displaying hooks found in version: wordpress-seo.20.3apply_filters('wpseo_indexables_buffer_size') is found 1 times:
- /src/helpers/indexables-page-helper.php line 79
* Filter 'wpseo_indexables_buffer_size' - Allow filtering the size of the buffer for the Indexables lists, in terms of how many times bigger it is from the lists' size. * * @api int The size of the buffer for the Indexables lists, in terms of how many times bigger it is from the lists' size. */ $times = \apply_filters( 'wpseo_indexables_buffer_size', self::BUFFER_SIZE ); if ( $times < 3 ) { $times = 3; } return ( $this->get_indexables_list_size() * \intval( $times ) ); }