결제 완료 했을때 후크걸기(카드,간편결제)
add_action('woocommerce_payment_complete', 'your function here', 10, 1);
가상계좌 발급했을때 후크걸기
add_action('woocommerce_order_status_awaiting-vbank', ' your function here ', 10, 1);
여기서부턴 우커머스 관련아니고 자주쓰는 후크
회원가입 했을때
add_action('user_register', ' your function here ', 10, 1);
회원가입후 alert 창 변경 하고싶을때
add_action('wpmem_register_redirect', ' your function here ', 10, 1);
'php 워드프레스 개발' 카테고리의 다른 글
문자인증 로직 변경 (1) | 2024.02.15 |
---|---|
간단하게 만들어본 마스킹처리 함수 (0) | 2024.01.17 |
api 연동중 에러 (4) | 2023.10.11 |
워드프레스 안전한 코딩방법 (0) | 2023.10.06 |
curl error 28 (2) | 2023.10.05 |