mwform_response_statuses_mwf_xxx

問い合わせ状況のステータスをカスタマイズできるフックです。

サンプルコード

/**
 * @param array $response_statuses
 */
function my_mwform_response_statuses( $response_statuses ) {
	return array_merge( $response_statuses, array(
		'foo' => 'foo です',
		'bar' => 'bar です',
	) );
}
add_filter( 'mwform_response_statuses_mwf_xxx', 'my_mwform_response_statuses' );