Put below code into your theme functions.php and try
function change_publish_button( $translation, $text ) {
if ( $text == 'Publish...' ) // Your button text
$text="Save";
return $text;
}
add_filter( 'gettext', 'change_publish_button', 10, 2 );
This one is worked for me
Hope it will help you!
Related Posts:
- Visual Studio SignTool.exe Not Found
- How can I set a draft page as parent without publishing?
- Display a post’s publish date from 2112
- Does blocking xmlrpc.php affect pinging update services like pingomatic
- Add Button To Top Toolbar in Gutenberg
- Remove border radius setting from the Gutenberg button block?
- I can’t preview post’s change once they are published
- Editing Screen: Make Update or Publish Button Follow The Page
- Publish post when edit post form submitted with enter/return pressed on keyboard
- How to make scheduled post preview visible to anyone?
- Scheduled Posts and wp-cron – Why don’t scheduled posts publish if too old?
- Why does publish_{custom-post-type} fire on update?
- Show recent published posts
- What Can I Use To Add A Custom Button Between Publish button and Move To Trash?
- Is there a way to know if a post has been published through XML-RPC?
- How to unpublish a page and still keep a draft?
- get_terms on save_post hook
- How to remove buttons from gutenberg toolbar
- Save and Publish button not working after installing SSL
- How to align a single Gutenberg block button in WP 5.5.3?
- How can I create custom button in post.php
- Disable “preview changes” button
- Custom button block doesn’t work
- Can we have private drafts?
- Gutenberg Button Border Radius Default
- Update post meta on bulk edit / update
- How can I center Gutenberg buttons on mobile?
- Can’t schedule post for another time
- publish_post called too early
- Custom save button shows ‘Are you sure you want to…’ dialog
- Get publish post link?
- Controlled publishing in WordPress
- transition_post_status hook doesn’t have any POST data when publish with Gutenberg [closed]
- problem with publish date not always appearing [duplicate]
- What is happening to make my Update/Publish button disabled?
- What is the reason for the new_to_publish hook not working?
- After I publish a post where does it go
- Should you manually ping new WordPress posts?
- Authors should not publish
- How to add custom status to quick edit
- I need to modify drafts using custom data from database and then publish it
- How to show or hide a post based on meta_value selection?
- i am making text changes on my page show in preview not on live site, why? [closed]
- Is WordPress “publish” atomic?
- How to move post process to background
- Gutenberg button removed on save if its empty
- How does redirect work when publish date changes and date in url changes?
- How to set a Post’s default visibility to ‘Private’ in Gutenberg?
- Gutenberg publish date datepicker
- How Google Indexer should only index published pages
- Publish and go to page [duplicate]
- Publish Post Action Not Working
- Is it normal for a scheduled post to say “Missed Schedule”
- Manage multiple wordpress installs (Best Practice)
- disable publish button until condition is not met
- Showing the next post’s title, even if it’s an unpublished post
- Force Publish Future (Scheduled) Posts Immediately [duplicate]
- Can’t publish posts, Jetpack won’t connect, empty notification emails to my inbox [closed]
- Duplicate post on publish
- How is it possible to use a very reduced version of WordPress?
- Problems in updating a self-developed plugin
- Remove Gutenberg Buttons Block
- How would I get a taxonomy/category list inside a Gutenberg block?
- Gutenberg custom block plugin with custom image sizes
- How to make 2/3 width column in Gutenberg
- Change default colors in paragraph block settings
- Gutenberg Reusable Block of WordPress
- If I dequeue Gutenberg Stylesheet will that have any effect on WordPress 5.0.1?
- WordPress Gutenberg, update post content programmatically
- new_to_publish fires multiple times
- Adding TinyMCE buttons without removing plugin buttons?
- className not populating in custom block
- What is the correct way to import the blocks-editor?
- Gutenberg table block with Bootstrap .table class
- Custom Blocks as part of a theme
- Detect when gutenberg editor title is available in Dom after editor load
- How do i get the link to a block?
- How to prevent Block Editor from adding id to block markup in save function?
- Can you make a custom gutenberg block that allows the gutenberg editor within it?
- Using full site editing, can I edit just one specific post / page to be unique?
- Can’t add front end script file using block.json for a custom block
- Add a product category to a specific product via a button
- How to create Gutenberg patterns and patterns categories based on CPT posts and CPT terms?
- Gutenberg Block: Query for posts with blocks and sort by attributes
- WordPress doesn’t save or publish new posts
- Can anyone explain why setting a block attributes source to a data-attribute doesn’t work?
- Add data attribute of post_id for Internal links
- How to: Provide component with innerBlocks to WordPress Gutenberg’s save function?
- Can’t extend my custom gutenberg block
- How do I check if I can use the allowed_block_types filter?
- Is there an easy way to remove the data-preserver-spaces span from blocks?
- Cannot access wp-admin after migration to another place
- After Update Advanced Gutenberg Plugin – advgb/container site does not support block
- get_post_gallery with Gutenberg
- How to execute certain code on back-end button press?
- Add new MCE button for toggle specific cell background color
- How to replace content of a block in and re-render on change?
- How can I render a built-in Gutenberg block with InnerBlocks outside of the block editor?
- extending a core block doesn’t work inside the editor
- How do I add filters in Twenty-Twenty-Three without a functions.php?