# templately/1.3.2/templately.php

Templately – Elementor &amp; Gutenberg Template Library: 6500+ Free &amp; Pro Ready Templates And Cloud!, version 1.3.2. 35 lines.

- Page: https://pluginprobe.com/plugins/templately/1.3.2/code/templately.php
- Raw: https://pluginprobe.com/plugins/templately/1.3.2/raw/templately.php
- Modified: 2022-01-20T11:08:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/templately/1.3.2/code/templately.php#L10-L20`.

```php
<?php
/**
 * Plugin Name: Templately
 * Description: The Best Templates Cloud for Elementor & Gutenberg. Get access to stunning templates, WorkSpace, Cloud Library & many more.
 * Plugin URI: https://templately.com
 * Author: Templately
 * Version: 1.3.2
 * Author URI: https://templately.com/
 * Text Domain: templately
 * Domain Path: /languages
 */

define('TEMPLATELY_FILE', __FILE__);
define('TEMPLATELY_VERSION', '1.3.2');
define('TEMPLATELY_PATH', plugin_dir_path(TEMPLATELY_FILE));
define('TEMPLATELY_URL', plugin_dir_url(TEMPLATELY_FILE));
define('TEMPLATELY_ASSETS', TEMPLATELY_URL . 'assets/');

/**
 * Initiate Autoloader for Class Load
 */
if (!class_exists('Templately\Autoloader')) {
    require TEMPLATELY_PATH . 'core/autoloader.php';
    Templately\Autoloader::init();
}
/**
 * Templately Class will be instantiated by function.
 * @return Templately\Plugin
 */
function templately(){
    if ( class_exists('Templately\Plugin') ) {
        return Templately\Plugin::get_instance();
    }
}
templately();
```
