Guest User

Untitled

a guest
May 23rd, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. add_action('admin_footer', function () {
  2. if (isset($_GET['page'], $_GET['sp']) && $_GET['page'] == 'quform.entries' && $_GET['sp'] == 'view') {
  3. ?>
  4. <script>
  5. jQuery(function ($) {
  6. $('.qfb-entry-table ul').each(function () {
  7. var images = [];
  8. $(this).find('>li>a').each(function () {
  9. var href = $(this).attr('href');
  10. if (/(.gif|.png|.jpe?g)$/ig.test(href)) {
  11. var $image = $('<img>').attr('src', href).css({
  12. maxWidth: '100%'
  13. });
  14. images.push($('<div>').css('margin-bottom', '10px').append($image));
  15. }
  16. });
  17. if (images.length) {
  18. $(this).replaceWith(images);
  19. }
  20. });
  21. });
  22. </script>
  23. <?php
  24. }
  25. });
Add Comment
Please, Sign In to add comment