我在Woocommerce产品单页中使用了名为redirect
的自定义字段,这使其重定向到单个产品页链接以外的链接。但是,我想在新选项卡中打开该重定向链接。我的跟随解决方案在同一窗口中打开该链接。
我遵循的代码:
<?php
global $post; // < -- globalize, just in case
$field = get_post_meta($post->ID, 'redirect', true);
if($field) wp_redirect(clean_url($field), 301);
get_header();
?>
答案 0 :(得分:0)
Nop,wp_redirect()根本不可能。您可以使用java脚本或其他方法来执行此操作。