Yoast\WP\SEO\Generators\Schema
FAQ::add_accepted_answer_property
Adds the Questions acceptedAnswer property.
Метод класса: FAQ{}
Хуков нет.
Возвращает
Массив. Schema.org Question piece.
Использование
// protected - в коде основоного (родительского) или дочернего класса $result = $this->add_accepted_answer_property( $question );
- $question(массив) (обязательный)
- The question to add the acceptedAnswer to.
Код FAQ::add_accepted_answer_property() FAQ::add accepted answer property Yoast 27.7
protected function add_accepted_answer_property( $question ) {
$data = [
'@type' => 'Answer',
'text' => $this->helpers->schema->html->sanitize( $question['jsonAnswer'] ),
];
return $this->helpers->schema->language->add_piece_language( $data );
}