Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function hide_specific_div() {
- ?>
- <script type="text/javascript">
- document.addEventListener('DOMContentLoaded', function () {
- var rankMathBoxes = document.querySelectorAll('.rank-math-box:not(.active)');
- rankMathBoxes.forEach(function(box) {
- if (box.querySelector('i.rm-icon-content-ai')) {
- box.style.display = 'none';
- }
- });
- });
- </script>
- <?php
- }
- add_action('admin_head', 'hide_specific_div');
Advertisement
Add Comment
Please, Sign In to add comment