`;
// 세 번째 h2 태그 다음에 광고 스크립트를 삽입합니다.
thirdH2.insertAdjacentHTML('afterend', adScript);
} else {
console.error('entry-content 클래스 안에 세 번째 h2 태그를 찾을 수 없습니다.');
}
} else {
console.error('entry-content 클래스를 가진 요소를 찾을 수 없습니다.');
}
});
`;
// 첫 번째 h2 태그 다음에 광고 스크립트를 삽입합니다.
firstH2.insertAdjacentHTML('afterend', adScript);
} else {
console.error('entry-content 클래스 안에 첫 번째 h2 태그를 찾을 수 없습니다.');
}
} else {
console.error('entry-content 클래스를 가진 요소를 찾을 수 없습니다.');
}
});