Yoast\WP\SEO\AI\Content_Planner\Domain
Category::__construct
The constructor.
Метод класса: Category{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Category = new Category(); $Category->__construct( $name, $id );
- $name(строка) (обязательный)
- The category title.
- $id(int) (обязательный)
- The category ID.
Код Category::__construct() Category:: construct Yoast 27.7
public function __construct( string $name, int $id ) {
$this->name = $name;
$this->id = $id;
}