Yoast\WP\SEO\AI\Content_Planner\Domain

Category::__constructpublicYoast 1.0

The constructor.

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

Хуков нет.

Возвращает

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

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

$Category = new Category();
$Category->__construct( $name, $id );
$name(строка) (обязательный)
The category title.
$id(int) (обязательный)
The category ID.

Код Category::__construct() Yoast 27.7

public function __construct( string $name, int $id ) {
	$this->name = $name;
	$this->id   = $id;
}