php 在“我的帐户”页面添加积分余额

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在“我的帐户”页面添加积分余额相关的知识,希望对你有一定的参考价值。

<?php
	/**
	* Add Points Balance
	*/
	
	add_action( 'woocommerce_account_dashboard', 'woo_add_point_balance_my_account' );
	function woo_add_point_balance_my_account() {
		
		echo '<hr>';
		echo '<h3>Points Balance</h3>';
		echo do_shortcode('[mycred_my_balance wrapper=0 title_el="" balance_el=""]');
	}

以上是关于php 在“我的帐户”页面添加积分余额的主要内容,如果未能解决你的问题,请参考以下文章