Skip to content

Instantly share code, notes, and snippets.

View WebMatPro's full-sized avatar

Mat WebMatPro

View GitHub Profile
@WebMatPro
WebMatPro / functions.php
Created November 7, 2020 09:48 — forked from softiconic/functions.php
Creating a new widget using theme function - Elementor page builder plugin
//Elementor Function Code
class ElementorCustomElement
{
private static $instance = null;
public static function get_instance()
{
if (!self::$instance)
self::$instance = new self;
return self::$instance;
}