IXR_Server::hasMethod()publicWP 1.0

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

Хуков нет.

Возвращает

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

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

$IXR_Server = new IXR_Server();
$IXR_Server->hasMethod( $method );
$method (обязательный)
-

Код IXR_Server::hasMethod() WP 6.5.2

function hasMethod($method)
{
    return in_array($method, array_keys($this->callbacks));
}