묻고답하기
page_full_width" class="col-xs-12" |cond="$__Context->page_full_width">
아래 데이터를 불러오는 변수명이나 파일명을 알수는 없을까요?
방문자수 출력 문의
2011.08.08 13:52
아래와 같은 스킨을 다운 받을 곳이나 만들 수 없을까요?
아래 데이터를 불러오는 변수명이나 파일명을 알수는 없을까요?
----------------------------------------------
방문자 / 페이지 뷰
----------------------------------------------
오늘 000 / 000000
어제 000 / 000000
그제 000 / 000000
----------------------------------------------
이번주 000 / 000000
지난주 000 / 000000
그지난주 000 / 000000
----------------------------------------------
기본 카운터위젯을 사용하며 됩니다.
xe - widgets - counter_status - counter_status.class.php
xe - widgets - counter_status - skins - default - counter_status.html
여기 두개의 파일을 수정하면 됩니다.
DB는
xe_counter_status
테이블에 정보가 있습니다.
{number_format($today_counter->unique_visitor)} / {number_format($today_counter->pageview)}
이것이 오늘 방문자 숫자 / 페이지뷰
{number_format($yesterday_counter->unique_visitor)} / {number_format($yesterday_counter->pageview)}
이것이 어제의 방문자 수 / 페이지뷰
{number_format($total_counter->unique_visitor)} / {number_format($total_counter->pageview)}
이것이 전체 방문자 수 / 페이지 뷰
2틀전 3일전 이런식으로 계속 구하고 싶으면
class파일에서 $output 변수에 3주까지 배열로 날짜를 입력하고 foreach 문에서 조건을 걸어주고
html에서 출력하면 될 것 같습니다.