I need to disable the Gutenberg text-settings tab in all Blocks. Is this possible with a funtion in funtions.php?
I could disable the colors tab, but found no solution for the text-settings:
function disable_tabs() { add_theme_support( 'editor-color-palette' ); add_theme_support( 'disable-custom-colors' );}add_action( 'after_setup_theme', 'disable_tabs' );