Skip to content

Instantly share code, notes, and snippets.

@gicolek
Last active April 20, 2021 14:05
Show Gist options
  • Save gicolek/62c1e3dd0ee6f434ae4370ececc91a5d to your computer and use it in GitHub Desktop.
Save gicolek/62c1e3dd0ee6f434ae4370ececc91a5d to your computer and use it in GitHub Desktop.
Elementor Custom Widget Settings
<?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