Skip to content

Instantly share code, notes, and snippets.

@lots0logs
Last active November 24, 2015 01:46
Show Gist options
  • Save lots0logs/ab7b46f9524a3c1ec753 to your computer and use it in GitHub Desktop.
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>:
<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