Full Site Editing - Version 3.22750

Version Description

Download this release

Release Info

Developer automattic
Plugin Icon wp plugin Full Site Editing
Version 3.22750
Comparing to
See all releases

Code changes from version 3.22716 to 3.22750

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.22716
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.22716' );
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.22750
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.22750' );
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.22716
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.22750
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
@@ -135,14 +135,14 @@ function unload_helpers() {
135
  * @return void
136
  */
137
  function add_submenu() {
138
- add_theme_page(
139
- __( 'Site Editor (beta)', 'full-site-editing' ),
140
  sprintf(
141
  /* translators: %s: "beta" label. */
142
- __( 'Site Editor %s', 'full-site-editing' ),
143
  '<span class="awaiting-mod">' . esc_html__( 'beta', 'full-site-editing' ) . '</span>'
144
  ),
145
- 'edit_theme_options',
146
  'site-editor-toggle',
147
  __NAMESPACE__ . '\menu_page'
148
  );
@@ -243,7 +243,7 @@ function menu_page() {
243
  id="site-editor-toggle"
244
  class="wrap"
245
  >
246
- <h1><?php esc_html_e( 'Site Editor (beta)', 'full-site-editing' ); ?></h1>
247
  <?php settings_errors(); ?>
248
  <form method="post" action="options.php">
249
  <?php settings_fields( 'site-editor-toggle' ); ?>
135
  * @return void
136
  */
137
  function add_submenu() {
138
+ add_options_page(
139
+ __( 'Full Site Editing (beta)', 'full-site-editing' ),
140
  sprintf(
141
  /* translators: %s: "beta" label. */
142
+ __( 'Full Site Editing %s', 'full-site-editing' ),
143
  '<span class="awaiting-mod">' . esc_html__( 'beta', 'full-site-editing' ) . '</span>'
144
  ),
145
+ 'manage_options',
146
  'site-editor-toggle',
147
  __NAMESPACE__ . '\menu_page'
148
  );
243
  id="site-editor-toggle"
244
  class="wrap"
245
  >
246
+ <h1><?php esc_html_e( 'Full Site Editing (beta)', 'full-site-editing' ); ?></h1>
247
  <?php settings_errors(); ?>
248
  <form method="post" action="options.php">
249
  <?php settings_fields( 'site-editor-toggle' ); ?>