I used this, inline, on specific pages (using get_current_screen()). I’d hoped this would enable me to hide/show the permalink panel under certain conditions. However, removeEditorPanel() removes the permalink panel globally. This isn’t completely horrifying, since the css still works conditionally, and the permalink can still be edited via the editor (by clicking on the title) everywhere else. Hoping the Gutenberg documentation/options get better soon. If anyone has any suggestions, I’m all ears…
add_action( 'admin_footer', function() {
$screen = get_current_screen();
if ( $screen->id == 'WUTEVA' ) { ?>
<style>
.editor-post-permalink{display: none !important;}
</style>
<script type="text/javascript">
const { removeEditorPanel } = wp.data.dispatch('core/edit-post');
removeEditorPanel( 'post-link' );
</script>
<?php }
} );
Related Posts:
- How to change the case of all post titles to “Title Case”
- Apply the_title() filter in post & page title, but not in menu title
- How to hide specific Gutenberg blocks settings from users
- How To Have Two Gutenberg Editors On One Post?
- Remove post title input from edit page
- Disallow Same Post Title
- How can I see a list of pages and post where my custom Gutenberg block is used?
- Verify if tag is used on posts
- Dynamically update post title in admin page
- How to show posts rank based on custom field value
- Get post from custom REST endpoint in Gutenberg
- Displaying Page Title on index.php
- How to intercept Post Title on Post-Save
- Testing for post title in ‘if/else’ statement returns no content
- get_post_field – Title without paragraph
- How do I add a reusable block to a programmatically created post?
- Add Category name to Post Title (h1)
- How to add a custom field after wp post
- Sorting posts alphabetical that have single digits
- How Can i Get 5 Recent Post Title With Corresponding Link?
- Limit Gutenberg blocks available to users to choose from
- I want to show category in the post title , how can I do
- How to prevent WordPress from updating the modified time?
- How to display following posts titles in separate div’s on a separate webpage
- Blog Posts not showing title
- Lose “Blog Archive” from page title
- How to Orderby Comments by post title?
- WordPress not opening posts with only numbers if permalink is post_name
- Block Editor: Reset Reusable Blocks to last saved record
- List blocks created by a specific block plugin
- How to Programmatically add an empty Block to every post on wordpress site?
- WordPress is replacing double minus signs in Post Title, how to disable it?
- How do I change the core post search algorithm? Where is it found/constructed?
- transition_post_status hook doesn’t have any POST data when publish with Gutenberg [closed]
- Is there a way to specify an extra class for a post or page with no title?
- Add title for previous and next posts to Yoko Theme
- Images inside post title
- Block editors annoying warnings
- Loop doesn’t show title of second post and posts thereafter
- How to show show the Second page title in the page
- How to get links to the last N posts in a specific category?
- Create a list of posts with topic headdings
- Blog post not showing title
- How can I remove the first two words and shorten get_the_title()
- How do I include the category next to the title of a post?
- How to style archive post titles… but only those posts who have comments?
- Replace image name on upload to the new post name on front-end form
- Edit the post title from the frontend
- Why in my query is display two title?
- Image behind the post’s title
- How to remove “» (title of post or page)”?
- Auto update post title and slug when post status is changed
- Get featured image on hover of post title [closed]
- Microformats in a single post – layout conflict
- How do I display the post_title with get_permalink?
- Post titles and thumbnails as links to custom post types?
- If post exists, make it a comment in existing post with same name?
- Changing The Default Header POST Title and Description text by category in wordpress
- Get post publishing date from within custom HTML block
- Change modified date to current date when title updated automatically
- Indenting within a blockquote
- Override WordPress core post-template.php block template
- How to select a category automatically based on a word in WordPress post title?
- How to remove the ManageBlocksMenuItem in the ToolsMoreMenuGroup in the Gutenberg Editor?
- how to show current date on post title which should be auto update in every day
- Adding Text after Post Title based on Category using IF Condition – But not for menu items
- How to merge the content of posts that have the same title?
- WordPress React re-rendering to many times
- How to set a Post’s default visibility to ‘Private’ in Gutenberg?
- Add data attribute of post_id for Internal links
- Moving Gutenberg content from one website to another (block media ids wrong?)
- Create/Set Category as Title of Post
- How to add a block to a category page?
- Add id attribute to h1 element of wordpress post
- Post title spoiler how?
- Odd hyphen added at end of blog post
- My posts page is missing the page title
- Hiding title of selected post without plugins
- Post Category link is same with Page link
- How can I choose and change a post title at random from an array when it is published?
- Post title to show all characters after having it limited for preview
- Add Image Before Posts Entry Title
- prevent same wordpress post title
- Get post title by Alphabet
- Get post title of faulty link on 404 error page
- How to get all post titles starting with numbers and symbols?
- Is it possible to have different header style blog titles in different categories?
- Is there a way to separate wordpress titles from their posts?
- display only the title of the post into a certain category
- How do I show the post title if an advanced custom field hasn’t been used?
- Deleting first four characters from all Post Titles
- Single post pagination
- How remove “recent comments” title without modifying code? [closed]
- clicking on page title
- Title displaying multiple times
- Custom Post-Rename Function Does Not Function in WordPress 6.x
- Is there a block to print post link standalone in a block theme?
- How to change Post title background size?
- Notify/check if the content of a custom gutenberg block has changed on save_post
- How to link Post Title to uploaded file?