Skip to content

Instantly share code, notes, and snippets.

@mkrdip
Created July 29, 2015 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mkrdip/35203b95ef8dd451e45d to your computer and use it in GitHub Desktop.
Save mkrdip/35203b95ef8dd451e45d to your computer and use it in GitHub Desktop.
Reorder Post Title & Featured Image
jQuery(document).ready(function() {
jQuery('.et_pb_posts article > a').each(function() {
jQuery(this).insertAfter(jQuery(this).siblings('.post-meta'));
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment