Version Description
Download this release
Release Info
Developer | mattwiebe |
Plugin | Full Site Editing |
Version | 3.25484 |
Comparing to | |
See all releases |
Code changes from version 3.25453 to 3.25484
- full-site-editing-plugin.php +2 -2
- readme.txt +1 -1
- wpcom-universal-themes/index.php +0 -2
full-site-editing-plugin.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
/**
|
3 |
* Plugin Name: WordPress.com Editing Toolkit
|
4 |
* Description: Enhances your page creation workflow within the Block Editor.
|
5 |
-
* Version: 3.
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://automattic.com/wordpress-plugins/
|
8 |
* License: GPLv2 or later
|
@@ -42,7 +42,7 @@ namespace A8C\FSE;
|
|
42 |
*
|
43 |
* @var string
|
44 |
*/
|
45 |
-
define( 'A8C_ETK_PLUGIN_VERSION', '3.
|
46 |
|
47 |
// Always include these helper files for dotcom FSE.
|
48 |
require_once __DIR__ . '/dotcom-fse/helpers.php';
|
2 |
/**
|
3 |
* Plugin Name: WordPress.com Editing Toolkit
|
4 |
* Description: Enhances your page creation workflow within the Block Editor.
|
5 |
+
* Version: 3.25484
|
6 |
* Author: Automattic
|
7 |
* Author URI: https://automattic.com/wordpress-plugins/
|
8 |
* License: GPLv2 or later
|
42 |
*
|
43 |
* @var string
|
44 |
*/
|
45 |
+
define( 'A8C_ETK_PLUGIN_VERSION', '3.25484' );
|
46 |
|
47 |
// Always include these helper files for dotcom FSE.
|
48 |
require_once __DIR__ . '/dotcom-fse/helpers.php';
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: automattic
|
|
3 |
Tags: block, blocks, editor, gutenberg, page
|
4 |
Requires at least: 5.5
|
5 |
Tested up to: 5.6
|
6 |
-
Stable tag: 3.
|
7 |
Requires PHP: 5.6.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
3 |
Tags: block, blocks, editor, gutenberg, page
|
4 |
Requires at least: 5.5
|
5 |
Tested up to: 5.6
|
6 |
+
Stable tag: 3.25484
|
7 |
Requires PHP: 5.6.20
|
8 |
License: GPLv2 or later
|
9 |
License URI: https://www.gnu.org/licenses/gpl-2.0.html
|
wpcom-universal-themes/index.php
CHANGED
@@ -88,7 +88,6 @@ function load_core_fse() {
|
|
88 |
add_action( 'admin_menu', 'gutenberg_site_editor_menu', 9 );
|
89 |
add_action( 'admin_menu', 'gutenberg_remove_legacy_pages' );
|
90 |
add_action( 'admin_bar_menu', 'gutenberg_adminbar_items', 50 );
|
91 |
-
add_filter( 'menu_order', 'gutenberg_menu_order' );
|
92 |
remove_action( 'init', __NAMESPACE__ . '\hide_template_cpts', 11 );
|
93 |
remove_action( 'restapi_theme_init', __NAMESPACE__ . '\hide_template_cpts', 11 );
|
94 |
remove_filter( 'block_editor_settings_all', __NAMESPACE__ . '\hide_fse_blocks' );
|
@@ -105,7 +104,6 @@ function unload_core_fse() {
|
|
105 |
remove_action( 'admin_menu', 'gutenberg_site_editor_menu', 9 );
|
106 |
remove_action( 'admin_menu', 'gutenberg_remove_legacy_pages' );
|
107 |
remove_action( 'admin_bar_menu', 'gutenberg_adminbar_items', 50 );
|
108 |
-
remove_filter( 'menu_order', 'gutenberg_menu_order' );
|
109 |
if ( defined( 'REST_API_REQUEST' ) && true === REST_API_REQUEST ) {
|
110 |
// Do not hook to init during the REST API requests, as it causes PHP warnings
|
111 |
// while loading the alloptions (unable to access wp_0_ prefixed tables).
|
88 |
add_action( 'admin_menu', 'gutenberg_site_editor_menu', 9 );
|
89 |
add_action( 'admin_menu', 'gutenberg_remove_legacy_pages' );
|
90 |
add_action( 'admin_bar_menu', 'gutenberg_adminbar_items', 50 );
|
|
|
91 |
remove_action( 'init', __NAMESPACE__ . '\hide_template_cpts', 11 );
|
92 |
remove_action( 'restapi_theme_init', __NAMESPACE__ . '\hide_template_cpts', 11 );
|
93 |
remove_filter( 'block_editor_settings_all', __NAMESPACE__ . '\hide_fse_blocks' );
|
104 |
remove_action( 'admin_menu', 'gutenberg_site_editor_menu', 9 );
|
105 |
remove_action( 'admin_menu', 'gutenberg_remove_legacy_pages' );
|
106 |
remove_action( 'admin_bar_menu', 'gutenberg_adminbar_items', 50 );
|
|
|
107 |
if ( defined( 'REST_API_REQUEST' ) && true === REST_API_REQUEST ) {
|
108 |
// Do not hook to init during the REST API requests, as it causes PHP warnings
|
109 |
// while loading the alloptions (unable to access wp_0_ prefixed tables).
|