| 开发者 | ThemeFarmer |
|---|---|
| 更新时间 | 2016年12月10日 12:31 |
| PHP版本: | 4.0 及以上 |
| WordPress版本: | 4.6.1 |
| 版权: | GPLv2 or later |
| 版权网址: | 版权信息 |
/wp-content/plugins/ directory\'Plugins\' menu in WordPressfunctions.php file
function text_domain_change_button_text($text){ return __('Button Text', 'text-domain'); } add_filter('themefarmer_wcaqv_button_taxt', 'text_domain_change_button_text');Ans. You can use filter to change button text. Place this code in theme's functions.php file
function text_domain_change_button_text($text){ return __('Button Text', 'text-domain'); } add_filter('themefarmer_wcaqv_button_taxt', 'text_domain_change_button_text');