# wordpress-seo/18.8/src/actions/indexing/limited-indexing-action-interface.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 18.8. 21 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.8/code/src/actions/indexing/limited-indexing-action-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.8/raw/src/actions/indexing/limited-indexing-action-interface.php
- Modified: 2021-07-29T10:57:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/18.8/code/src/actions/indexing/limited-indexing-action-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Actions\Indexing;

/**
 * Interface definition of a reindexing action for indexables that have a limited unindexed count.
 *
 * @phpcs:disable Yoast.NamingConventions.ObjectNameDepth.MaxExceeded
 */
interface Limited_Indexing_Action_Interface {

	/**
	 * Returns a limited number of unindexed posts.
	 *
	 * @param int $limit Limit the maximum number of unindexed posts that are counted.
	 *
	 * @return int|false The limited number of unindexed posts. False if the query fails.
	 */
	public function get_limited_unindexed_count( $limit );
}

```
