인기인 배지 - 위젯에서 활용(부제:50%할인 마감일)
트위터 인증 배지 처럼 활용 개념 : https://xetown.com/rxe_tip/981669
게시물 목록에서 배지 출력 : https://xetown.com/rxe_story/1021249
에 이어 위젯 컨텐츠 위젯등에서 활용 하는 방법 입니다.
아래와 같이 넣어 주시고 사용하시면 됩니다.
{@
$sargs = new stdClass;
$sargs->member_srl = $item->getMemberSrl();
$woutput = executeQuery("memberfollow.getMemberFollowerCount",$sargs);
$listFollowerCount = $woutput->data->cnt;
}
<!--@
if
(
$listFollowerCount
>25)-->
<img src=
"배지 이미지주소"
title=
"인기인의글"
>
<!--@
end
-->
위젯에 따라 $item 선언 문제로 안되시는 분은 아래 구문으로도 try 해볼만합니다.
{@
$sargs = new stdClass;
$sargs->member_srl = $document->get('member_srl');
$woutput = executeQuery("memberfollow.getMemberFollowerCount",$sargs);
$listFollowerCount = $woutput->data->cnt;
}
결과물 예시
감사합니다.
https://xetown.com/rxe_story/1079699
댓글 0