Câu trả lời:
Hãy thử mã sau để xóa chế độ xem:
// Check the view id the one that you are looking for.
if ($view = views_get_view($name)) {
// Delete the view if it is the one that you are looking for.
views_delete_view($view);
}
views_delete_view
. Câu trả lời này là cách phức tạp hơn mức cần thiết: views_delete_view
các cuộc gọi $view->delete();
và sau đó delete
phương thức thực hiện vô hiệu hóa bộ đệm.
$view->delete();
, nếu cần bạn có thể kiểm tra câu trả lời ngay bây giờ.
views_view::delete()