Make WordPress Core


Ignore:
Timestamp:
09/08/2023 10:01:14 AM (15 months ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Remove superfluous blank lines at the end of various functions.

Note: This is enforced by WPCS 3.0.0.

Follow-up to [56536], [56547].

Props jrf.
See #59161, #58831.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentytwenty/functions.php

    r56526 r56548  
    137137    $loader = new TwentyTwenty_Script_Loader();
    138138    add_filter( 'script_loader_tag', array( $loader, 'filter_script_loader_tag' ), 10, 2 );
    139 
    140139}
    141140
     
    196195    // Add print CSS.
    197196    wp_enqueue_style( 'twentytwenty-print-style', get_template_directory_uri() . '/print.css', null, $theme_version, 'print' );
    198 
    199197}
    200198
     
    216214    wp_enqueue_script( 'twentytwenty-js', get_template_directory_uri() . '/assets/js/index.js', array(), $theme_version );
    217215    wp_script_add_data( 'twentytwenty-js', 'async', true );
    218 
    219216}
    220217
     
    331328
    332329    return $html;
    333 
    334330}
    335331
     
    403399        )
    404400    );
    405 
    406401}
    407402
     
    449444
    450445    add_editor_style( $classic_editor_styles );
    451 
    452446}
    453447
     
    478472
    479473    return $mce_init;
    480 
    481474}
    482475
     
    506499
    507500    return $mce_init;
    508 
    509501}
    510502
     
    598590        add_theme_support( 'dark-editor-style' );
    599591    }
    600 
    601592}
    602593
Note: See TracChangeset for help on using the changeset viewer.