Changeset 3065336
- Timestamp:
- 04/05/2024 09:55:24 AM (2 years ago)
- Location:
- kakao-tam/trunk
- Files:
-
- 8 edited
-
index.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
validateChannel.php (modified) (2 diffs)
-
validateKakaoLogin.php (modified) (1 diff)
-
validateKakaoMap.php (modified) (1 diff)
-
validateKakaoNavi.php (modified) (2 diffs)
-
validateMe.php (modified) (1 diff)
-
validateShare.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
kakao-tam/trunk/index.php
r3024870 r3065336 4 4 Plugin URI: https://github.com/kakao-tam/wordpress-plugin 5 5 Description: 카카오 디벨로퍼스에서 제공하는 카카오 로그인, 카카오톡 공유하기, 카카오톡 채널 친구추가/채팅, 카카오 내비, 카카오 맵 기능을 연동한 플러그인 6 Version: 1.8. 57 Requires at least: 5.26 Version: 1.8.6 7 Requires at least: 6.5 8 8 Requires PHP: 7.0 9 9 Author: Kakao TAM -
kakao-tam/trunk/readme.txt
r3024870 r3065336 3 3 Donate link: https://kakao-tam.tistory.com/140 4 4 Tags: kakaologin, kakaotalk, share, kakaotalkchannel, 카카오로그인, 카카오내비, 카카오톡공유 5 Requires at least: 5.26 Tested up to: 6. 3.27 Stable tag: 1.8. 55 Requires at least: 6.5 6 Tested up to: 6.5 7 Stable tag: 1.8.6 8 8 Requires PHP: 7.0 9 9 License: GPLv2 or later … … 18 18 19 19 ---version history--- 20 2024.04.05 [1.8.6] 워드프레스 6.5 ShortCode 버그 수정 20 21 2024.01.22 [1.8.5] 카카오 로그인 좌우 정렬 기능, 카카오 로그인 후 버튼 표시 여부 설정 기능 추가 21 22 2023.12.10 [1.8.4] 카카오 스토리 관련 코드 제거 -
kakao-tam/trunk/validateChannel.php
r2830699 r3065336 60 60 public function getShortCodeAdd($content){ 61 61 if (!is_admin()) { 62 return $ content . $this->kakaotalk_channel_add();62 return $this->kakaotalk_channel_add(); 63 63 } 64 64 return $content; … … 66 66 public function getShortCodeChat($content){ 67 67 if (!is_admin()) { 68 return $ content . $this->kakaotalk_channel_chat();68 return $this->kakaotalk_channel_chat(); 69 69 } 70 70 return $content; -
kakao-tam/trunk/validateKakaoLogin.php
r3024870 r3065336 36 36 public function getShortCode($content){ 37 37 if (!is_admin()) { 38 return $ content . $this->kakao_login();38 return $this->kakao_login(); 39 39 } 40 40 return $content; -
kakao-tam/trunk/validateKakaoMap.php
r2980511 r3065336 30 30 public function getShortCode($content){ 31 31 if (!is_admin()) { 32 return $ content . $this->kakaomap();32 return $this->kakaomap(); 33 33 } 34 34 return $content; -
kakao-tam/trunk/validateKakaoNavi.php
r2842370 r3065336 30 30 public function getShortCode($content){ 31 31 if (!is_admin()) { 32 return $ content . $this->kakaonavi();32 return $this->kakaonavi(); 33 33 } 34 34 return $content; … … 36 36 public function getShareShortCode($content){ 37 37 if (!is_admin()) { 38 return $ content . $this->kakaonavi_share();38 return $this->kakaonavi_share(); 39 39 } 40 40 return $content; -
kakao-tam/trunk/validateMe.php
r2980511 r3065336 31 31 public function getShortCode($content){ 32 32 if (!is_admin()) { 33 return $ content . $this->kakaotalk_me();33 return $this->kakaotalk_me(); 34 34 } 35 35 return $content; -
kakao-tam/trunk/validateShare.php
r2980511 r3065336 36 36 public function getShortCode($content){ 37 37 if (!is_admin()) { 38 return $ content . $this->kakaotalk_share();38 return $this->kakaotalk_share(); 39 39 } 40 40 return $content;
Note: See TracChangeset
for help on using the changeset viewer.