You appear to be a bot. Output may be restricted
Description
In the case of term-links and post-links we want to use the total unindexed count, because using the limited unindexed count actually leads to worse performance.
Usage
$int = Abstract_Link_Indexing_Action::get_limited_unindexed_count( $limit );
Parameters
- $limit
- ( int|bool ) optional – Unused.
Returns
int The total number of unindexed links.
Source
File name: wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php
Lines:
1 to 3 of 3
public function get_limited_unindexed_count( $limit = false ) { return $this->get_total_unindexed(); }