<?php
if( function_exists('mycred_add') ) {
$user_id = get_current_user_id();
if( $user_id == 0 ) {
echo '<p>請先登入 LINE 或網站帳號。</p>';
echo '<a href="/wp-login.php">登入</a>';
} else {
mycred_add('Default', $user_id, 1, '咖啡豆累點');
$points = mycred_get_users_balance($user_id);
echo "<p>你已累積 <strong>$points</strong> 點咖啡豆點數(滿 8 點可兌換 400 元以下咖啡豆)</p>";
}
}
?>