PluginProbe
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! / 3.4.8
Templately – Elementor & Gutenberg Template Library: 6500+ Free & Pro Ready Templates And Cloud! v3.4.8
3.7.5 3.7.4 3.7.3 3.7.2 1-final 3.7.1 3.7.0 3.6.8 3.6.7 3.6.6 3.6.5 3.6.4 3.6.3 3.6.2 3.6.1 3.0.3 3.0.4 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.10 All 111 releases
← All changes | templately.php +27 -0 1-final3.4.8 View file →
@@ -1,0 +1,27 @@
1 +<?php
2 +
3 +/**
4 + * Plugin Name: Templately
5 + * Description: The Best Templates Cloud for Elementor & Gutenberg. Get access to stunning templates, WorkSpace, Cloud Library & many more.
6 + * Plugin URI: https://templately.com
7 + * Author: Templately
8 + * Version: 3.4.8
9 + * Author URI: https://templately.com/
10 + * Text Domain: templately
11 + * Domain Path: /languages
12 + */
13 +defined( 'ABSPATH' ) or die( 'Access denied!' ); // Avoid direct file request
14 +
15 +define( 'TEMPLATELY_FILE', __FILE__ );
16 +define( 'TEMPLATELY_PATH', plugin_dir_path( TEMPLATELY_FILE ) );
17 +require TEMPLATELY_PATH . 'vendor/autoload.php';
18 +
19 +/**
20 + * Templately Class will be instantiated by function.
21 + * @return Templately\Plugin
22 + */
23 +function templately() {
24 + return Templately\Plugin::get_instance();
25 +}
26 +
27 +templately();