php 在Beaver Builder订阅表单中更改名称字段占位符

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在Beaver Builder订阅表单中更改名称字段占位符相关的知识,希望对你有一定的参考价值。

add_filter( 'gettext_with_context', __NAMESPACE__ . '\change_name_placeholder', 10, 4 );
/**
 * Customize the Name placeholder text for the subscribe Beaver Builder module
 *
 * @since 1.0.0
 *
 * @param $translated
 * @param $text
 * @param $context
 * @param $domain
 *
 * @return string
 */
function change_name_placeholder( $translated, $text, $context, $domain ) {

	if ( 'fl-builder' == $domain  && 'Name' == $text && 'First and last name.' == $context ) {
			$translated = 'First Name';
	}
	
	return $translated;

}

以上是关于php 在Beaver Builder订阅表单中更改名称字段占位符的主要内容,如果未能解决你的问题,请参考以下文章

php 在Beaver Builder中为Selector添加图像大小

php 在Beaver Builder中注册新的字段连接

php 在Beaver Builder UI中禁用HTML模块呈现。

php Beaver Builder为模块插件添加多个字体 - https://wpbeaches.com/adding-web-fonts-beaver-builder-plugin/

php Nice Beaver Builder短代码

php Beaver Builder禁用内联编辑