# Widget Structure

Elementor Core Intermediate

Creating a custom Elementor Widget is not very different from creating a native WordPress widget. Start by creating a class that extends the \Elementor\Widget_Base class and fill in all the required methods.

Each widget needs to have a few basic settings - a unique name that will identify the widget in the code, a title that will be used as the widget label, and an icon. There are also advanced settings such as widget controls which are the fields where users select their custom data, and a render script that generates the final output based on user data from the widget controls.

# Widget Class

First, we need to create a class that extends the \Elementor\Widget_Base class:

class Elementor_Test_Widget extends \Elementor\Widget_Base {
}
1
2

# Widget Methods

A simple widget skeleton class will look as follows:

class Elementor_Test_Widget extends \Elementor\Widget_Base {

	public function get_name() {}

	public function get_title() {}

	public function get_icon() {}

	public function get_categories() {}

	public function get_keywords() {}

	public function get_custom_help_url() {}

	protected function get_upsale_data() {}

	public function get_script_depends() {}

	public function get_style_depends() {}

	protected function register_controls() {}

	protected function render() {}

	protected function content_template() {}

}
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

The \Elementor\Widget_Base class has many more methods, but the vast majority of your needs are covered by the methods mentioned above.

These methods can be divided into five groups: