indexnow-url-submission-admin-react.php
16 lines
| 1 | <div id="indexNowAppRoot"></div> |
| 2 | <script> |
| 3 | (function( $ ) { |
| 4 | var bwApp = $('#indexNowAppRoot'); |
| 5 | if (bwApp) { |
| 6 | var wp_body = bwApp.parents()[0]; |
| 7 | var update_nags = wp_body.querySelectorAll('.update-nag'); |
| 8 | update_nags.forEach(update_nag => { |
| 9 | update_nag.style.display = 'none'; |
| 10 | }); |
| 11 | document.querySelector('#wpcontent').setAttribute('style', 'padding-left: 0') |
| 12 | } |
| 13 | |
| 14 | })( jQuery ); |
| 15 | </script> |
| 16 |