我想修改下面的代码,以便新的标签标题链接打开新的页面ex。 site.com/cart/而不是打开标签。
我尝试使用插件和正则表达式/ tab-test_tab /添加重定向 我尝试修改功能并添加重定向功能
/**
* Add a custom product data tab for title link to cart
*/
add_filter( 'woocommerce_product_tabs', 'woo_new_product_tab' );
function woo_new_product_tab( $tabs ) {
// Adds the new tab
$tabs['test_tab'] = array(
'title' => __( 'View Cart', 'woocommerce' ),//edit this and add link
'priority' => 50,
'callback' => 'woo_new_product_tab_content'
);
return $tabs;
}
function woo_new_product_tab_content() {
// add return; above The new tab content
echo '<h2>New Product Tab</h2>';
echo '<p>Here\'s your new product tab.</p>';
}