Yoast\WP\SEO\Llms_Txt\Application\Markdown_Builders

Intro_Builder::build_intropublicYoast 1.0

Builds the intro section.

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

Хуков нет.

Возвращает

Intro. The intro section.

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

$Intro_Builder = new Intro_Builder();
$Intro_Builder->build_intro(): Intro;

Код Intro_Builder::build_intro() Yoast 27.7

public function build_intro(): Intro {
	$intro_content = \sprintf(
		'Generated by %s, this is an llms.txt file, meant for consumption by LLMs.',
		$this->get_generator_version(),
	);

	return new Intro( $intro_content, [] );
}