// تابعی برای گرفتن مقدار orderby از URL
function getOrderByParam() {
const urlParams = new URLSearchParams(window.location.search);
return urlParams.get('orderby');
}
// پیدا کردن لینک مربوط به orderby فعلی و دادن کلاس active
const orderby = getOrderByParam();
if (orderby) {
const activeLink = document.querySelector(`.sort-bar a[data-order="${orderby}"]`);
if (activeLink) {
activeLink.classList.add('active');
}
}