Xoá comment trong wordpress bằng wp-cli
Số lượng spam comment với các site xây dựng bằng WordPress cực kỳ nhiều, xoá bằng tay thì rất lâu, dùng wp cli là tuyệt nhất.
Dưới đây là một số ví dụ xoá comment bằng wp-cli
Xoá comment đang ở trạng thái hold
wp comment delete $(wp comment list --status=hold --format=ids)
Xoá comment đang ở trạng thái spam
wp comment delete $(wp comment list --status=spam --format=ids)
Xoá hết (cẩn thận nhé)
wp comment delete $(wp comment list --format=ids)