我正在使用“add\\u settings\\u field”,并希望为其提供翻译,但我的问题是安全性
情况也是如此__(\'My Checbox:\' , \'domain\')
翻译是否足够安全
如果没有,我该怎么办 我试着使用esc_html_e( \'My Checbox:\' , \'domain\' )
和esc_html_( \'My Checbox:\' , \'domain\' )
但它破坏了我的页面。。。
add_settings_field(
\'add_checkbox\',
__(\'My Checbox:\' , \'domain\'),<!--Is this secure when translating?-->
\'my_checkbox_function\',
\'theme_options\',
\'theme_options\'
);