Yoast\WP\SEO\Llms_Txt\Domain\Markdown\Sections
Intro::__construct
Class constructor.
Метод класса: Intro{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Intro = new Intro(); $Intro->__construct( $intro_content, $intro_links );
- $intro_content(строка) (обязательный)
- The intro content.
- $intro_links(Link[]) (обязательный)
- The intro links.
Код Intro::__construct() Intro:: construct Yoast 27.7
public function __construct( string $intro_content, array $intro_links ) {
$this->intro_content = $intro_content;
foreach ( $intro_links as $link ) {
$this->add_link( $link );
}
}