Yoast\WP\SEO\Config
SEMrush_Client::get() public Yoast 1.0
Performs an authenticated GET request to the desired URL.
{} Это метод класса: SEMrush_Client{}
Хуков нет.
Возвращает
Разное
. The parsed API response.
Использование
$SEMrush_Client = new SEMrush_Client(); $SEMrush_Client->get( $url, $options );
- $url(строка) (обязательный)
- The URL to send the request to.
- $options(массив)
- The options to pass along to the request.
Код SEMrush_Client::get() SEMrush Client::get Yoast 16.1.1
public function get( $url, $options = [] ) {
return $this->do_request( 'GET', $url, $options );
}