You appear to be a bot. Output may be restricted
Description
Returns the number of texts that will be indexed in a single link indexing pass.
Usage
$int = Abstract_Link_Indexing_Action::get_limit();
Parameters
Returns
int The limit.
Source
File name: wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php
Lines:
1 to 8 of 8
public function get_limit() { /** * Filter 'wpseo_link_indexing_limit' - Allow filtering the number of texts indexed during each link indexing pass. * * @api int The maximum number of texts indexed. */ return \apply_filters( 'wpseo_link_indexing_limit', 5 ); }