editor-font-sizes in functions not working (Gutenberg)
-
Hey
I am using editor-font-sizes in my functions.php but it doesn’t take affect.I’ve already added custom color palette, but having issues with this:
add_theme_support( 'editor-font-sizes', array( array( 'name' => __( 'extra small', 'platetheme' ), 'shortName' => __( 'XS', 'platetheme' ), 'size' => 11, 'slug' => 'small' ), array( 'name' => __( 'regular', 'platetheme' ), 'shortName' => __( 'M', 'platetheme' ), 'size' => 16, 'slug' => 'regular' ), array( 'name' => __( 'large', 'platetheme' ), 'shortName' => __( 'L', 'platetheme' ), 'size' => 36, 'slug' => 'large' ), array( 'name' => __( 'larger', 'platetheme' ), 'shortName' => __( 'XL', 'platetheme' ), 'size' => 50, 'slug' => 'larger' ) ) );
I’ve tried to disable custom font sizes to see if that was a requirement (the code works just doesn’t help with the above)
add_theme_support('disable-custom-font-sizes');
Any idea why it isn’t working on the editor?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘editor-font-sizes in functions not working (Gutenberg)’ is closed to new replies.