얼마전 "myCRED 플러그인 랭크이미지 가 동일하게 노출됩니다"라고 질문을 했었습니다.
답변을 아래와 같이 주셔서 잘 적용했습니다.
<?php
// Get rank object
$rank = mycred_get_users_rank( $content->member_uid );
// If the user has a rank, $rank will be an object
if ( is_object( $rank ) ) {
// Show rank title
echo $rank->title;
// Show rank logo (if one exists)
if ( $rank->has_logo )
echo $rank->get_image( 'logo' );
// Show total number of users with this rank
echo $rank->count;
}
?>
동일하게 KBoard 게시판 댓글 리스트에도 적용하려고 위의 코드를 넣었더니 반응이 없더군요.
혹 코드를 다르게 해야하는건가요?
댓글의 경우는 아래처럼 해주셔야 합니다.
<?php
// Get rank object
$rank = mycred_get_users_rank( $comment->user_uid );
// If the user has a rank, $rank will be an object
if ( is_object( $rank ) ) {
// Show rank title
echo $rank->title;
// Show rank logo (if one exists)
if ( $rank->has_logo )
echo $rank->get_image( 'logo' );
// Show total number of users with this rank
echo $rank->count;
}
?>
/wp-content/plugins/kboard-comments/skin/default/list-template.php 파일을 수정해주세요.
적당한곳에 코드를 추가해주세요^^
네~ 바로 적용하니 잘나옵니다~ *^^* 감사합니다~