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 can I remove all default settings in Gutenberg blocks? example core/button
- When i save or publish a post setting reset wp
- What’s the best way using vanilla js to force confirmation on publish button?
- Can’t publish custom type posts that don’t support title and editor, instead they’re saved as draft
- Gutenberg element Button How do I customize the hover and focus effects?
- Remove left alignment option in core/image block
- Is there a hook or filter yet for Gutenberg Block Editor to not auto-add Noreferrer to links with a target?
- Is it possible to use to create a “switchable” preview of a Carousel Gutenberg block?
- Dynamic Gutenburg block output echoes in WP Dashboard
- Can’t select my block by clicking on it
- Allow Contributor to edit published post and filter by page id
- Is there a better way to to make async API calls using the @wordpress/data module?
- isSavingPost() for widgets
- How to disable inline css styles generated by Gutenberg editor?
- Gutenberg block outputting JSON in front end – is this normal?
- Permalink doesn’t get displayed in Twitter button (Local WordPress problem?)
- Using apiFetch for retrieving post data in Gutenberg
- React useEffect not work in frontend gutenberg blocks
- Gutenberg Blocks – Cannot retrieve block saved attributes in edit post
- How to add InnerBlock multiple times in the same block
- How to get ACF value inside Gutenberg Block from another page or template? I’m using Timber too
- Editing HTML structure of Gutenberg layout recent post?
- Customizing the wp_video_shortcode output with add_filter
- Including dependencies using @wordpress/dependency-extraction-webpack-plugin
- Loading elements with a button
- What is the cleanest way to shrink Gutenberg Blocks to container width?
- Gutenberg Editor: display error with a combination of transform and background-attachment:fixed
- Where to save Gutenberg plugin data?
- My posts are getting to Auto draft when I try to Publish
- Moving Gutenberg content from one website to another (block media ids wrong?)
- Resizing images on page
- When to use removeEditorPanel()
- Implementing Scrollable Images
- creating different style CTA button in the menu
- Create Button Using Provided Code
- calculate values from a field and insert them into custom fields when publishing or updating post
- Align images to the left of the content
- How do I have two RadioControls in my custom Gutenberg block?
