PluginProbe
VK Blocks / 0.6.0
VK Blocks v0.6.0
1.126.4 1.126.3 1.126.1 1.126.2 1.126.0 1.125.0 1.124.0 1.123.0 1.122.0 1.121.0 1.120.0 1.119.2 1.119.1 1.119.0 1.118.7 1.82.0.0 1.82.0.1 1.83.0.0 1.83.0.1 1.84.0.0 1.84.0.1 1.85.0.2 1.85.0.3 1.85.1.0 1.85.1.1 All 287 releases
vk-blocks / vk-blocks.php
vk-blocks.php
24 lines 632 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Plugin Name: VK Blocks
4 * Plugin URI: https://github.com/vektor-inc/vk-blocks
5 * Description: This is a plugin that extends Gutenberg's blocks.
6 * Version: 0.6.0
7 * Author: Vektor,Inc.
8 * Author URI:
9 * Text Domain: vk-blocks
10 */
11
12 // Do not load directly.
13 defined( 'ABSPATH' ) || die();
14
15 require_once( 'inc/vk-blocks-config.php' );
16
17 add_action(
18 'plugins_loaded', function () {
19 //Load language files.
20 // load_plugin_textdomain( 'vk-blocks', false, basename( dirname( __FILE__ ) ) . '/inc/vk-blocks/build/languages' );
21 load_plugin_textdomain( 'vk-blocks', false, 'vk-blocks/inc/vk-blocks/build/languages' );
22 }
23 );
24