jetpack.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | // disable notices for iframe preview |
| 4 | function kubio_iframe_preview_disable_jetpack_notices_scripts() { |
| 5 | |
| 6 | if ( ! kubio_is_hybdrid_theme_iframe_preview() ) { |
| 7 | return; |
| 8 | } |
| 9 | |
| 10 | if ( class_exists( 'Jetpack_Notifications' ) ) { |
| 11 | remove_action( 'wp_head', array( Jetpack_Notifications::init(), 'styles_and_scripts' ), 120 ); |
| 12 | remove_action( 'admin_head', array( Jetpack_Notifications::init(), 'styles_and_scripts' ) ); |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | add_action( 'init', 'kubio_iframe_preview_disable_jetpack_notices_scripts' ); |
| 17 |