disable_formats_dropdown WordPress Filter Hook
The disable_formats_dropdown hook allows you to disable the formats dropdown on the post editor. This can be useful if you want to force a specific format on your users, or if you don't want them to be able to change the format of their posts.
apply_filters( 'disable_formats_dropdown', bool $disable , string $post_type ) #
Filters whether to remove the ‘Formats’ drop-down from the post list table.
Parameters
- $disable
(bool)Whether to disable the drop-down. Default false.
- $post_type
(string)Post type slug.
Source
Changelog
Version | Description |
---|---|
5.5.0 | The $post_type parameter was added. |
5.2.0 | Introduced. |