Last active
April 20, 2021 14:05
-
-
Save gicolek/62c1e3dd0ee6f434ae4370ececc91a5d to your computer and use it in GitHub Desktop.
Elementor Custom Widget Settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// note: previous code above | |
// used to identify our widget | |
public function get_name() { | |
return 'rac-product-filters'; | |
} | |
// this is what the Widget name visible from the Widget Screen | |
public function get_title() { | |
return 'RAC Product Filters'; | |
} | |
// this is the custom Widget icon | |
public function get_icon() { | |
return 'fas fa-filter'; | |
} | |
public function get_categories() { | |
return [ 'basic' ]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment