SimplePie::set_max_checked_feeds()publicWP 1.0

Set maximum number of feeds to check with autodiscovery

Method of the class: SimplePie{}

No Hooks.

Return

null. Ничего (null).

Usage

$SimplePie = new SimplePie();
$SimplePie->set_max_checked_feeds( $max );
$max(int)
Maximum number of feeds to check
Default: 10

SimplePie::set_max_checked_feeds() code WP 6.4.1

public function set_max_checked_feeds($max = 10)
{
	$this->max_checked_feeds = (int) $max;
}