Making WordPress.org

Ticket #3359: 3359.diff

File 3359.diff, 939 bytes (added by sippis, 7 years ago)
  • wordcamp.org/public_html/wp-content/mu-plugins/gutenberg-tweaks.php

    diff --git wordcamp.org/public_html/wp-content/mu-plugins/gutenberg-tweaks.php wordcamp.org/public_html/wp-content/mu-plugins/gutenberg-tweaks.php
    index 9e947dfb..be8a4c35 100644
    function add_classic_param_to_add_new_button() { 
    8484        <script type="text/javascript">
    8585                document.addEventListener( 'DOMContentLoaded', function() {
    8686                        jQuery( '.split-page-title-action' ).children( 'a' ).each( function( index, element ) {
    87                                 jQuery( element ).attr( 'href', jQuery( element ).attr( 'href' ) + '&classic-editor' );
     87                                var href = jQuery( element ).attr( 'href' );
     88                                if ( href.match(/.php$/) ) {
     89                                        jQuery( element ).attr( 'href', href + '?classic-editor' );
     90                                } else {
     91                                        jQuery( element ).attr( 'href', href + '&classic-editor' );
     92                                }
    8893                        } );
    8994                } );
    9095        </script>