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