GochiSiyan

move author after excerpt

Aug 30th, 2021 (edited)
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. (function (){
  2. document.querySelectorAll('.jeg_postblock_2 article').forEach(function (value){
  3. let excerpt = value.querySelector('.jeg_post_excerpt');
  4. if (excerpt) {
  5. let author = value.querySelector('.jeg_meta_author');
  6. excerpt.after(author);
  7. author.style.display = 'block'
  8. }
  9. });
  10. })();
Add Comment
Please, Sign In to add comment