Version Description
[ Specification Change ] Change display order up
Download this release
Release Info
Developer | vektor-inc |
Plugin | VK Block Patterns |
Version | 0.3.0 |
Comparing to | |
See all releases |
Code changes from version 0.2.4 to 0.3.0
- .svnignore +1 -1
- inc/vk-block-patterns/package/class-vk-block-patterns.php +2 -2
- readme.txt +4 -1
- vk-block-patterns.php +1 -1
.svnignore
CHANGED
@@ -1,6 +1,6 @@
|
|
1 |
.github/
|
2 |
.gitignore
|
3 |
-
.
|
4 |
gulpfile.js
|
5 |
LICENSE
|
6 |
package.json
|
1 |
.github/
|
2 |
.gitignore
|
3 |
+
.svnignore
|
4 |
gulpfile.js
|
5 |
LICENSE
|
6 |
package.json
|
inc/vk-block-patterns/package/class-vk-block-patterns.php
CHANGED
@@ -20,8 +20,8 @@ if ( ! class_exists( 'VK_Block_Patterns' ) ) {
|
|
20 |
* Constructor
|
21 |
*/
|
22 |
public function __construct() {
|
23 |
-
add_action( 'init', array( __CLASS__, 'register_block_patterns' ),
|
24 |
-
add_action( 'init', array( __CLASS__, 'register_post_type' ),
|
25 |
add_action( 'admin_init', array( __CLASS__, 'admin_init' ) );
|
26 |
}
|
27 |
|
20 |
* Constructor
|
21 |
*/
|
22 |
public function __construct() {
|
23 |
+
add_action( 'init', array( __CLASS__, 'register_block_patterns' ), 9 );
|
24 |
+
add_action( 'init', array( __CLASS__, 'register_post_type' ), 8 );
|
25 |
add_action( 'admin_init', array( __CLASS__, 'admin_init' ) );
|
26 |
}
|
27 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link:
|
|
4 |
Tags: Guternberg, Block Pattern
|
5 |
Requires at least: 5.5
|
6 |
Tested up to: 5.5
|
7 |
-
Stable tag: 0.
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
@@ -16,6 +16,9 @@ When you activate this plugin that create new custom post type for custom block
|
|
16 |
|
17 |
== Changelog ==
|
18 |
|
|
|
|
|
|
|
19 |
= 0.2.4 =
|
20 |
[ Other ] add .org banner
|
21 |
|
4 |
Tags: Guternberg, Block Pattern
|
5 |
Requires at least: 5.5
|
6 |
Tested up to: 5.5
|
7 |
+
Stable tag: 0.3.0
|
8 |
Requires PHP: 5.6
|
9 |
License: GPLv2 or later
|
10 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
16 |
|
17 |
== Changelog ==
|
18 |
|
19 |
+
= 0.3.0 =
|
20 |
+
[ Specification Change ] Change display order up
|
21 |
+
|
22 |
= 0.2.4 =
|
23 |
[ Other ] add .org banner
|
24 |
|
vk-block-patterns.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: VK Block Patterns
|
4 |
* Plugin URI: https://github.com/vektor-inc/vk-block-patterns
|
5 |
* Description: You can make and register your original custom block patterns.
|
6 |
-
* Version: 0.
|
7 |
* Author: Vektor,Inc.
|
8 |
* Author URI: https://vektor-inc.co.jp
|
9 |
* Text Domain: vk-block-patterns
|
3 |
* Plugin Name: VK Block Patterns
|
4 |
* Plugin URI: https://github.com/vektor-inc/vk-block-patterns
|
5 |
* Description: You can make and register your original custom block patterns.
|
6 |
+
* Version: 0.3.0
|
7 |
* Author: Vektor,Inc.
|
8 |
* Author URI: https://vektor-inc.co.jp
|
9 |
* Text Domain: vk-block-patterns
|