wpseo_indexables_buffer_size

wpseo_indexables_buffer_size

Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-seo.20.3

apply_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 ) );
    	}