Plugin Directory

Changeset 3065336


Ignore:
Timestamp:
04/05/2024 09:55:24 AM (2 years ago)
Author:
mcpelee
Message:

2024.04.05 [1.8.6] 워드프레스 6.5 ShortCode 버그 수정

Location:
kakao-tam/trunk
Files:
8 edited

Legend:

Unmodified
Added
Removed
  • kakao-tam/trunk/index.php

    r3024870 r3065336  
    44Plugin URI: https://github.com/kakao-tam/wordpress-plugin
    55Description: 카카오 디벨로퍼스에서 제공하는 카카오 로그인, 카카오톡 공유하기, 카카오톡 채널 친구추가/채팅, 카카오 내비, 카카오 맵 기능을 연동한 플러그인
    6 Version: 1.8.5
    7 Requires at least: 5.2
     6Version: 1.8.6
     7Requires at least: 6.5
    88Requires PHP: 7.0
    99Author: Kakao TAM
  • kakao-tam/trunk/readme.txt

    r3024870 r3065336  
    33Donate link: https://kakao-tam.tistory.com/140
    44Tags: kakaologin, kakaotalk, share, kakaotalkchannel, 카카오로그인, 카카오내비, 카카오톡공유
    5 Requires at least: 5.2
    6 Tested up to: 6.3.2
    7 Stable tag: 1.8.5
     5Requires at least: 6.5
     6Tested up to: 6.5
     7Stable tag: 1.8.6
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    1818
    1919---version history---
     202024.04.05 [1.8.6] 워드프레스 6.5 ShortCode 버그 수정
    20212024.01.22 [1.8.5] 카카오 로그인 좌우 정렬 기능, 카카오 로그인 후 버튼 표시 여부 설정 기능 추가
    21222023.12.10 [1.8.4] 카카오 스토리 관련 코드 제거
  • kakao-tam/trunk/validateChannel.php

    r2830699 r3065336  
    6060    public function getShortCodeAdd($content){
    6161        if (!is_admin()) {
    62             return $content . $this->kakaotalk_channel_add();
     62            return $this->kakaotalk_channel_add();
    6363        }
    6464        return $content;
     
    6666    public function getShortCodeChat($content){
    6767        if (!is_admin()) {
    68             return $content . $this->kakaotalk_channel_chat();
     68            return $this->kakaotalk_channel_chat();
    6969        }
    7070        return $content;
  • kakao-tam/trunk/validateKakaoLogin.php

    r3024870 r3065336  
    3636    public function getShortCode($content){
    3737        if (!is_admin()) {
    38             return $content . $this->kakao_login();
     38            return $this->kakao_login();
    3939        }
    4040        return $content;
  • kakao-tam/trunk/validateKakaoMap.php

    r2980511 r3065336  
    3030    public function getShortCode($content){
    3131        if (!is_admin()) {
    32             return $content . $this->kakaomap();
     32            return $this->kakaomap();
    3333        }
    3434        return $content;
  • kakao-tam/trunk/validateKakaoNavi.php

    r2842370 r3065336  
    3030    public function getShortCode($content){
    3131        if (!is_admin()) {
    32             return $content . $this->kakaonavi();
     32            return $this->kakaonavi();
    3333        }
    3434        return $content;
     
    3636    public function getShareShortCode($content){
    3737        if (!is_admin()) {
    38             return $content . $this->kakaonavi_share();
     38            return $this->kakaonavi_share();
    3939        }
    4040        return $content;
  • kakao-tam/trunk/validateMe.php

    r2980511 r3065336  
    3131    public function getShortCode($content){
    3232        if (!is_admin()) {
    33             return $content . $this->kakaotalk_me();
     33            return $this->kakaotalk_me();
    3434        }
    3535        return $content;
  • kakao-tam/trunk/validateShare.php

    r2980511 r3065336  
    3636    public function getShortCode($content){
    3737        if (!is_admin()) {
    38             return $content . $this->kakaotalk_share();
     38            return $this->kakaotalk_share();
    3939        }
    4040        return $content;
Note: See TracChangeset for help on using the changeset viewer.