Я хочу удалить все ссылки на отдельные продукты на своем веб-сайте.
Текущий_url не работает.
add_action( 'template_redirect', 'product_redirection_to_current_url', 100 );
function product_redirection_to_current_url() {
if ( ! is_product() ) return; // Only for single product pages.
wp_redirect( current_url() ); // redirect to current url.
exit();
}
Подробнее здесь: https://stackoverflow.com/questions/790 ... rrent-page
Мобильная версия