Make WordPress Core


Ignore:
Timestamp:
10/23/2017 08:47:27 PM (8 years ago)
Author:
jorbin
Message:

Dashboard: Remove "Try Gutenberg" callout.

Reverting this for 4.9. It will be added back in a future version of WordPress. This doesn't mean that you shouldn't be trying Gutenberg, just that it isn't ready for a call out to a larger audience. But if you are the type to read commit messages, https://github.com/WordPress/gutenberg could use your pull requests and comments on issues.

Reverts [41931] [41900] [41896] [41895]
See #41316

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/ajax-actions.php

    r41913 r41978  
    14811481
    14821482/**
    1483  * Ajax handler for updating whether to display the Try Gutenberg panel.
    1484  *
    1485  * @since 4.9.0
    1486  */
    1487 function wp_ajax_update_try_gutenberg_panel() {
    1488     check_ajax_referer( 'try-gutenberg-panel-nonce', 'trygutenbergpanelnonce' );
    1489 
    1490     update_user_meta( get_current_user_id(), 'show_try_gutenberg_panel', empty( $_POST['visible'] ) ? 0 : 1 );
    1491 
    1492     wp_die( 1 );
    1493 }
    1494 
    1495 /**
    14961483 * Ajax handler for retrieving menu meta boxes.
    14971484 *
Note: See TracChangeset for help on using the changeset viewer.