PluginProbe
Post Grid Gutenberg Blocks – PostX / 1.0.0
Post Grid Gutenberg Blocks – PostX v1.0.0
5.0.39 5.0.38 5.0.37 5.0.36 5.0.35 5.0.34 5.0.33 5.0.32 5.0.31 5.0.30 5.0.29 5.0.28 5.0.27 5.0.26 5.0.25 5.0.23 5.0.24 5.0.22 5.0.21 5.0.20 5.0.19 5.0.18 5.0.17 2.1.1 2.1.2 All 237 releases
ultimate-post / ultimate-post.php

ultimate-post.php in Post Grid Gutenberg Blocks – PostX 1.0.0, at ultimate-post.php

40 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: Ultimate Post
4 * Description: Ultimate Post blocks is a Gutenberg block Plugin for creating dynamic blog listing, grid and slider.
5 * Version: 1.0.0
6 * Author: wpxpo
7 * Author URI: https://wpxpo.com/
8 * Text Domain: ultimate-post
9 * License: GPLv3
10 * License URI: http://www.gnu.org/licenses/gpl-3.0.html
11 */
12
13 defined( 'ABSPATH' ) || exit;
14
15 // Define
16 define('ULTP_VER', '1.0.0');
17 define('ULTP_URL', plugin_dir_url(__FILE__));
18 define('ULTP_PATH', plugin_dir_path(__FILE__));
19
20 // Language Load
21 add_action('init', 'ultp_language_load');
22 function ultp_language_load() {
23 load_plugin_textdomain( 'ultimate-post', false, basename(dirname(__FILE__))."/languages/" );
24 }
25
26 if(!function_exists('ultimate_post')) {
27 function ultimate_post() {
28 require_once ULTP_PATH . 'classes/Functions.php';
29 return new \ULTP\Functions();
30 }
31 }
32
33 if (!class_exists( 'ultp_Initialization' )) {
34 require_once ULTP_PATH . 'classes/Initialization.php';
35 new \ULTP\Initialization();
36 }
37
38
39 require_once ULTP_PATH . 'classes/Templates.php';
40 new \ULTP\Templates();