Last active
November 24, 2015 01:46
-
-
Save lots0logs/ab7b46f9524a3c1ec753 to your computer and use it in GitHub Desktop.
Blog Module: Make Featured Image Appear Below The Post Title ePanel>>Integration>>Add to the <body>:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
(function($) { | |
$(document).ready(function() { | |
$('.et_pb_posts.et_pb_module article > a:first-child').each(function() { | |
$(this).insertAfter($(this).siblings('.post-meta')); | |
}); | |
}); | |
})(jQuery); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment