Prepare for the pivotal moments of your career.
let body = document.querySelector('body'); let classList = body.className.split(' '); let postID;
for (i = 0; i < classList.length; i++) { if ( classList[i].match(/postid-[0-9]+/i) !== null ) { postID = classList[i].match(/postid-[0-9]+/i); }; } postID = postID[0].replace("postid-", ".post-"); let singleMorePosts = document.querySelector( '.single-more-posts' ); let postToRemove = singleMorePosts.querySelector( postID ); postToRemove.remove();