我需要翻译插件中的动态值 一个例子:
esc_attr_e( $content['ServiceTypesPage']['headingServices'] );
$ content可以有2个值
让我们说$ content是:'Hello'es_ES $ content应该变成:'Hola' pt_BR $的内容应变为:“ Ola”
说$ content是:“一个” es_ES $ content应该变成:“ Uno” pt_BR $ 内容应变为:“嗯”
我该怎么做
这是来自php的示例
<div class="row">
<label for="content[ServiceTypesPage][headingServices]" class="col-md-6 control-label"><?php _e( 'Services Heading', 'calendar-booking' ); ?></label>
<input type="text" name="content[ServiceTypesPage][headingServices]" class="col-md-6" placeholder="<?php esc_attr_e( $content['ServiceTypesPage']['headingServices'] );?>" />
</div>
<br/>