php 添加自定义URL菜单链接到WooCommerce MyAccount区域

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 添加自定义URL菜单链接到WooCommerce MyAccount区域相关的知识,希望对你有一定的参考价值。

add_filter( 'woocommerce_get_endpoint_url', 'lab_hook_endpoint', 10, 4 );
function lab_hook_endpoint( $url, $endpoint, $value, $permalink ){
 
	if( $endpoint === 'legacy-account-link' ) {
 
		// ok, here is the place for your custom URL, it could be external
		$url = site_url('/account/');
 
	}
	return $url;
 }

以上是关于php 添加自定义URL菜单链接到WooCommerce MyAccount区域的主要内容,如果未能解决你的问题,请参考以下文章