admin = Admin::get_instance(); $this->elementor = Elementor::get_instance(); self::run(); do_action('templately_init'); } /** * Run all actions and hooks * * @return void */ public static function run() { /** * Loader will run actions and filters function for the plugin. */ Loader::run(); } /** * Get Plugin Name or You can say Text Domain * @return string */ public static function get_name() { return self::$plugin_name; } /** * Get Plugin Version * @return String */ public static function get_version() { return self::$version; } }