Yoast\WP\SEO\Presentations

Indexable_Presentation::generate_meta_description()publicYoast 1.0

Generates the meta description.

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

Хуков нет.

Возвращает

Строку. The meta description.

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

$Indexable_Presentation = new Indexable_Presentation();
$Indexable_Presentation->generate_meta_description();

Код Indexable_Presentation::generate_meta_description() Yoast 22.4

public function generate_meta_description() {
	if ( $this->model->description ) {
		return $this->model->description;
	}

	return '';
}