method_get_font_size_presets()
method_get_font_size_presets()
Gets the font size presets for the FontSizePicker component.
Description
Returns the array of named font size presets from METHOD_OPTIONS (or METHOD_CHILD_OPTIONS). These appear in MethodTypographyControls‘s FontSizePicker as quick‑select options.
Parameters
None.
Return
(array) Array of preset objects:
PHP
array(
array( 'name' => 'Small', 'slug' => 'sm', 'size' => '1rem' ),
array( 'name' => 'Medium', 'slug' => 'md', 'size' => '1.25rem' ),
// ...
)Source
File: lib/helper-functions.php
Notes
- Passed to the editor via
methodGlobalData.fontSizePresets. - Override by defining
METHOD_CHILD_OPTIONSin your child theme.
Changelog
| Version | Description |
|---|---|
| 2.0.0 | Introduced. |