Advertisement
GochiSiyan

Hero thumbnail footer script

Feb 2nd, 2021
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. add_action('wp_footer',function (){
  2. ?>
  3. <script>
  4. (function ($,$$) {
  5. document.querySelectorAll('.jeg_heroblock .jeg_thumb').forEach(function (value,index) {
  6. width=value.offsetWidth
  7. height=value.offsetHeight
  8.  
  9. Array.from(value.getElementsByClassName('thumbnail-container')).forEach(function(value,index){
  10. value.style.width=`${width}px`
  11. value.style.height=`${height}px`
  12. })
  13. })
  14. })(jQuery,console.log)
  15. </script>
  16. <?php
  17. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement