Advertisement
abdulkrm

Generatepress Smooth Scroll

Jan 14th, 2024
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. function add_smooth_scroll_script() {
  2. ?>
  3. <script>
  4. document.addEventListener('DOMContentLoaded', function() {
  5. var tocDiv = document.querySelector('.wp-block-rank-math-toc-block');
  6. if (tocDiv) {
  7. var links = tocDiv.querySelectorAll('a');
  8. links.forEach(function(link) {
  9. link.classList.add('smooth-scroll');
  10. });
  11. }
  12. });
  13. </script>
  14. <?php
  15. }
  16. add_action('wp_footer', 'add_smooth_scroll_script');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement