';
firstH2.parentNode.insertBefore(adDiv, firstH2.nextSibling);
}
// Insert ad before post tags
var postTags = document.querySelector('.post-tags');
if (postTags) {
var adDiv = document.createElement('div');
adDiv.className = 'ad-injection';
adDiv.innerHTML = '
';
postTags.parentNode.insertBefore(adDiv, postTags);
}
});