Change the text of the publish button to Save
I am trying to change the text of the publish button to save
function change_publish_button( $translation, $text ) {
if ( $text == 'Publish' )
return 'Save';
return $translation;
}
add_filter( 'gettext', 'change_publish_button', 10, 2 );
I am trying to run the above code but it doesn't change the text of the publish button, can anyone please tell what is wrong with this code or suggest any new method. Thanks in advance
Update
I want to change the publish button shown in the figure below.
Topic block-editor buttons publish Wordpress
Category Web