SimplePie::set_useragent()publicWP 1.0

Set the user agent string

Метод класса: SimplePie{}

Хуков нет.

Возвращает

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

Использование

$SimplePie = new SimplePie();
$SimplePie->set_useragent( $ua );
$ua(строка)
New user agent string.
По умолчанию: SIMPLEPIE_USERAGENT

Код SimplePie::set_useragent() WP 6.5.2

public function set_useragent($ua = SIMPLEPIE_USERAGENT)
{
	$this->useragent = (string) $ua;
}