# Typography Group Control
Elementor Core BasicElementor typography group control displays input fields to define the content typography including font size, font family, font weight, text transform, font style, line height and letter spacing.
The control is defined in Group_Control_Typography
class which extends Group_Control_Base
class.
When using this group control, the type
should be set to Group_Control_Typography::get_type()
method.
# Arguments
Name | Type | Default | Description |
---|---|---|---|
type | string | typography | The type of the control. |
separator | string | default | Set the position of the control separator. Available values are default , before and after . default will hide the separator, unless the control type has specific separator settings. before / after will position the separator before/after the control. |
exclude | array | Exclude some controls from the group control. Example: ['font_style'] |
# Return Value
(array
) An array containing the typography values.
# Usage
<?php
class Elementor_Test_Widget extends \Elementor\Widget_Base {
protected function register_controls() {
$this->start_controls_section(
'content_section',
[
'label' => esc_html__( 'Content', 'textdomain' ),
'tab' => \Elementor\Controls_Manager::TAB_CONTENT,
]
);
$this->add_group_control(
\Elementor\Group_Control_Typography::get_type(),
[
'name' => 'content_typography',
'selector' => '{{WRAPPER}} .your-class',
]
);
$this->end_controls_section();
}
protected function render() {
$settings = $this->get_settings_for_display();
?>
<div class="your-class">
...
</div>
<?php
}
protected function content_template() {
?>
<div class="your-class">
...
</div>
<?php
}
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Notes
Learn how to use Global Fonts, set in the Site Settings panel, on your typography controls.