php WPForms:根据表单ID更改JS验证字符串(对多语言站点有用)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php WPForms:根据表单ID更改JS验证字符串(对多语言站点有用)相关的知识,希望对你有一定的参考价值。

<?php

add_filter( 'wpforms_frontend_strings', function( $strings ) {
	global $post;

	if ( ! isset( $post->post_content ) ) {
		return $strings;
	}

	preg_match( '~\[wpforms id=\"(\d+)\"~', $post->post_content, $matches );

	if ( ! is_array( $matches ) || ! isset( $matches[1] ) ) {
		return $strings;
	}

	$form_id = (int) $matches[1];

	// This form ID should be changed and the text below it as well.
	if ( 181 === $form_id ) {
		$strings['val_required'] = 'PUT HERE YOUR CUSTOM TEXT';
	}

	return $strings;
} );

以上是关于php WPForms:根据表单ID更改JS验证字符串(对多语言站点有用)的主要内容,如果未能解决你的问题,请参考以下文章

php WPForms:仅为登录用户提交表单一次。

php WPForms:基于字段值的条件表单重定向。

php WPForms:更改导出CSV文件分隔符。

是否有从 wpforms 读取 POST 数据的特定方法?

如果选择框选项更改,则 JQuery 验证不起作用

php js表单验证问题