В кастомной теме wp, есть кнопка read more, ее нужно вывести в acf, есть read more и read less, как добавить сюда поле acf? пробовал делать переменные с js, getfield,thefield, но не работает.
Скрипт находится в файле шаблона.
const readMoreBtn = document.querySelector(".read-more-btn");
const text = document.querySelector(".text");
readMoreBtn.addEventListener("click", (e) => {
text.classList.toggle("show-more");
if (readMoreBtn.innerText === "Read More") {
readMoreBtn.innerText = "Read Less";
} else {
readMoreBtn.innerText = "Read More";
}
});