I want to hide the permalink section under the title of a post for a particular post type in WordPress. How can I do that?
Leave a Reply
You must be logged in to post a comment.
I want to hide the permalink section under the title of a post for a particular post type in WordPress. How can I do that?
You must be logged in to post a comment.
Under
register_post_types
add the following arguments:What you need is the first element
'public' => false
.It’s possible by adding the value ‘permalink’ to the ‘hide_on_screen’ array of ACF (Advanced Custom Fields). Or doing this via the ACF Field group configurator.