WP Statistics 네이버 다음 검색 엔진 추가 방법
- 워드프레스
- 2024. 4. 22.
반응형
WP Statistics 네이버 다음 검색 엔진 추가 방법
티스토리가 방문자 통계를 쉽게 알 수 있는 반면에 워드프레스는 통계 확인에 답답함을 느끼게 됩니다. 허수도 굉장히 많은 것 같지만 그래도 많이 사용하는 WP Statistics 플러그인을 한국 스타일에 맞게 변경하여 사용해 봅시다.
다음 네이버 아이콘 다운로드
아이콘 업로드
- /wp-content/plugins/wp-statistics/assets/images/search-engine
- 다운받은 아이콘을 위 경로에 업로드합니다.
편집할 파일 찾기
- /wp-content/plugins/wp-statistics/includes
- 위 경로에 있는 class-wp-statistics-search-engine.php 파일을 아래와 같이 편집합니다.
코드 삽입
파일을 열어서 public static function getList($all = false) 하단에 아래와 같은 코드를 삽입하면 됩니다.
public static function getList($all = false)
{
// List OF Search engine
$default = $engines = array(
'naver' => array(
'name' => 'Naver', 'translated',
'translated' => __('Naver', 'wp-statistics'),
'tag' => 'naver',
'sqlpattern' => '%naver.com%',
'regexpattern' => 'naver.com',
'querykey' => 'sm',
'image' => 'naver.png',
'logo_url' => self::Asset() . 'naver.png'
),
'daum' => array(
'name' => 'Daum', 'translated',
'translated' => __('Daum', 'wp-statistics'),
'tag' => 'daum',
'sqlpattern' => '%daum.net%',
'regexpattern' => 'daum.net',
'querykey' => 'q',
'image' => 'daum.png',
'logo_url' => self::Asset() . 'daum.png'
),
'ask' => array(
'name' => 'Ask.com',
'translated' => __('Ask.com', 'wp-statistics'),
'tag' => 'ask',
'sqlpattern' => '%ask.com%',
'regexpattern' => 'ask\.com',
'querykey' => 'q',
'image' => 'ask.png',
'logo_url' => self::Asset() . 'ask.png'
),
검색 엔진 추가 결과 확인
- 위 그림과 같이 다음과 네이버가 추가된 것을 확인할 수 있습니다.
- 참고) 플러그인이 업데이트되면 코드가 리셋되므로 다시 검색엔진추가를 해줘야합니다.
반응형
'워드프레스' 카테고리의 다른 글
워드프레스 사이드바 광고 고정하는 방법 (0) | 2024.04.24 |
---|---|
워드프레스 애드센스 광고 삽입 방법(+ ads.txt 문제 해결) (0) | 2024.04.23 |
워드프레스 카카오톡 채널 추가 버튼 삽입 방법 (0) | 2024.04.11 |
워드프레스 검색 엔진 등록 및 검색 노출 (0) | 2024.04.10 |
워드프레스 호스팅과 도메인 (0) | 2024.04.08 |