如何更改post-new.php和profile.php上的字符

时间:2016-12-27 01:46:14

标签: wordpress

这是关于WordPress管理屏幕的问题。 我想更改post-new.phpprofile.php上的字符。我不知道应该更改阵列的哪个部分。这就是我不使用JavaScript的原因。 如果你知道的话请告诉我。

第一个是改变发布' post-new.php上的按钮,按下按钮后的完成消息或更新消息。

第二种是更改每个标签并更新个人资料' profile.php上的按钮,按下按钮后的提醒信息和完成信息。

1 个答案:

答案 0 :(得分:0)

只需将以下代码添加到当前活动主题的functions.php文件中。

add_filter( 'gettext', 'modify_button_name_and_message', 10, 2 );

function modify_button_name_and_message( $translation, $text ) {
 if ( $text == 'Publish' ){
   return 'Save Post';
 }
 if ( $text == 'Update Profile' ){
   return 'Save Profile';
 }
 if ( $text == 'Profile updated.' ){
   return 'Profile Successfully Update.';
 }
 if ( $text == 'Post updated.' ){
   return 'Post Is Successfully Updated.';
 }
 if ( $text == 'Post published.' ){
   return 'Post Is Successfully Created.';
 }
 return $translation;
}

注意:更新主题时,您在任何主题文件中所做的所有更改都将消失。所以更喜欢Child Theme

希望这会对你有所帮助。