wpcf7_quiz_messages()CF7 1.0

Хуков нет.

Возвращает

null. Ничего (null).

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

wpcf7_quiz_messages( $messages );
$messages (обязательный)
-

Код wpcf7_quiz_messages() CF7 5.9.3

function wpcf7_quiz_messages( $messages ) {
	$messages = array_merge( $messages, array(
		'quiz_answer_not_correct' => array(
			'description' =>
				__( "Sender does not enter the correct answer to the quiz", 'contact-form-7' ),
			'default' =>
				__( "The answer to the quiz is incorrect.", 'contact-form-7' ),
		),
	) );

	return $messages;
}