Making WordPress.org


Ignore:
Timestamp:
09/19/2016 09:14:19 AM (8 years ago)
Author:
ocean90
Message:

Breathe: Show a notice when JavaScript is disabled.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sites/trunk/wordpress.org/public_html/wp-content/themes/pub/wporg-breathe/functions.php

    r3975 r4095  
    5757}
    5858add_action( 'wporg_breathe_after_header', __NAMESPACE__ . '\welcome_box' );
     59
     60function javascript_notice() {
     61    ?>
     62    <noscript class="js-disabled-notice">
     63        <?php _e( 'Please enable JavaScript to view this page properly.', 'o2' ); ?>
     64    </noscript>
     65    <?php
     66}
     67add_action( 'wp_footer', __NAMESPACE__ . '\javascript_notice' );
Note: See TracChangeset for help on using the changeset viewer.