Plugin Directory

Changeset 2578887


Ignore:
Timestamp:
08/05/2021 04:30:33 PM (4 years ago)
Author:
mattwiebe
Message:

Update Editing Toolkit Plugin to 3.12592

Location:
full-site-editing/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • full-site-editing/trunk/full-site-editing-plugin.php

    r2578869 r2578887  
    33 * Plugin Name: WordPress.com Editing Toolkit
    44 * Description: Enhances your page creation workflow within the Block Editor.
    5  * Version: 3.12588
     5 * Version: 3.12592
    66 * Author: Automattic
    77 * Author URI: https://automattic.com/wordpress-plugins/
     
    4343 * @var string
    4444 */
    45 define( 'A8C_ETK_PLUGIN_VERSION', '3.12588' );
     45define( 'A8C_ETK_PLUGIN_VERSION', '3.12592' );
    4646
    4747// Always include these helper files for dotcom FSE.
  • full-site-editing/trunk/readme.txt

    r2578869 r2578887  
    44Requires at least: 5.5
    55Tested up to: 5.6
    6 Stable tag: 3.12588
     6Stable tag: 3.12592
    77Requires PHP: 5.6.20
    88License: GPLv2 or later
  • full-site-editing/trunk/wpcom-universal-themes/index.php

    r2577443 r2578887  
    196196 */
    197197function hide_template_cpts() {
     198    // This can interfere with Legacy FSE, bail if it's active.
     199    if ( is_full_site_editing_active() ) {
     200        return;
     201    }
    198202    global $wp_post_types;
    199203    if ( isset( $wp_post_types['wp_template'] ) ) {
Note: See TracChangeset for help on using the changeset viewer.