mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
8 lines
275 B
Text
8 lines
275 B
Text
function disable_wc_endpoint_v1() {
|
|
$current_url = $_SERVER['REQUEST_URI'];
|
|
if (strpos($current_url, '/wp-json/wc/store/v1/checkout') !== false) {
|
|
wp_redirect(home_url('/404.php'));
|
|
exit;
|
|
}
|
|
}
|
|
add_action('rest_api_init', 'disable_wc_endpoint_v1');
|