循环浏览WordPress文章,并使用JavaScript添加一个CSS类的步骤如下:
下面是一个示例代码:
// 使用Fetch API发送AJAX请求获取文章列表
fetch('https://your-wordpress-site/wp-json/wp/v2/posts')
.then(response => response.json())
.then(posts => {
// 遍历文章列表
posts.forEach(post => {
// 获取文章对应的HTML元素
const postElement = document.getElementById(`post-${post.id}`);
// 添加CSS类
postElement.classList.add('highlight');
});
})
.catch(error => {
console.error('Error:', error);
});
在上面的示例代码中,我们使用了Fetch API发送了一个GET请求来获取文章列表。然后使用forEach()方法遍历文章列表,找到对应的HTML元素,并使用classList.add()方法添加了一个名为"highlight"的CSS类。
请注意,上述代码中的URL需要替换为你自己的WordPress站点的URL。另外,"highlight"是一个示例CSS类名,你可以根据自己的需求修改。
希望以上内容能够帮助到你!
领取专属 10元无门槛券
手把手带您无忧上云