Reputation: 5
I would like to have this Format option in my wordpress when i make new post enter image description here
Now i have different options in my wordpress post settingsenter image description here
Upvotes: 0
Views: 41
Reputation: 84
Please try "Classic Editor" plugin. Hope this will help you.
Upvotes: 1
Reputation: 21
The format of a text block is controlled by the different blocks in your view with Gutenberg. If you want to work without Gutenberg, you have to deactivate Gutenberg for your post type.
add_filter('use_block_editor_for_post_type', '__return_false', 10);
You can add this code to your theme's functions.php file or in a plugin. This will disable the Gutenberg editor for all post types and restore the classic editor.
Upvotes: 0