Title: Wise Analytics
Author: Marcin
Published: <strong>2024 年 5 月 21 日</strong>
Last modified: 2026 年 1 月 25 日

---

搜索插件

![](https://ps.w.org/wise-analytics/assets/banner-772x250.png?rev=3090167)

![](https://ps.w.org/wise-analytics/assets/icon-256x256.png?rev=3090167)

# Wise Analytics

 作者：[Marcin](https://profiles.wordpress.org/marcinlawrowski/)

[下载](https://downloads.wordpress.org/plugin/wise-analytics.1.1.20.zip)

 * [详情](https://cn.wordpress.org/plugins/wise-analytics/#description)
 * [评价](https://cn.wordpress.org/plugins/wise-analytics/#reviews)
 *  [安装](https://cn.wordpress.org/plugins/wise-analytics/#installation)
 * [开发进展](https://cn.wordpress.org/plugins/wise-analytics/#developers)

 [支持](https://wordpress.org/support/plugin/wise-analytics/)

## 描述

**Wise Analytics** is a fully fledged site statistics plugin that helps to track
the behavior of visitors, measure the traffic sources and actions taken on your 
website. The plugin provides a platform to analyze the traffic visualized as tables
and charts. It is easy to set up and configure. Our development team is constantly
working on new features and supporting the existing ones.

We believe that the statistics should be neither collected nor processed outside
your server. With Wise Analytics you can have such level of privacy. Then you may
learn your visitors and improve your site or business to earn more.

**[Read More](https://kainex.pl/projects/wp-plugins/wise-analytics?utm_source=wiseanalytics-page&utm_medium=lead&utm_campaign=readme)**

**[Source code on GitHub](https://github.com/marcin-lawrowski/wise-analytics)**

#### List of features:

 * Tracking visitors, visits, the behaviour, page views and other actions
 * Integration with Contact Form 7 (a visitor sends a form -> Wise Analytics recognizes
   all future actions of the visitor -> all actions are then assigned to e-mail 
   address of the visitor)
 * Tracking traffic sources (Referral, Social Networks, Search Engines, Direct, 
   Paid Traffic)
 * Detecting devices, languages, screens
 * Visitors behaviour: pages stats, entry pages, exit pages
 * Hourly visits in visitors’ local time
 * Tracking WordPress log-in event
 * Visitor profile page (name, e-mail, language, screen size, device, last visit,
   hourly activity, full actions log, etc.)
 * Top visited pages
 * Full visitors table with average visit time
 * Filtering by dates range

## 屏幕截图

[⌊Main Page⌉⌊Main Page⌉[

Main Page

[⌊Top Pages, Recent Visitors, Last events⌉⌊Top Pages, Recent Visitors, Last events⌉[

Top Pages, Recent Visitors, Last events

[⌊Visitors table⌉⌊Visitors table⌉[

Visitors table

[⌊Visitor detailed page⌉⌊Visitor detailed page⌉[

Visitor detailed page

[⌊Traffic sources overview⌉⌊Traffic sources overview⌉[

Traffic sources overview

[⌊Organic visits⌉⌊Organic visits⌉[

Organic visits

[⌊Referral visits⌉⌊Referral visits⌉[

Referral visits

[⌊Channels⌉⌊Channels⌉[

Channels

[⌊Devices⌉⌊Devices⌉[

Devices

[⌊Hourly stats⌉⌊Hourly stats⌉[

Hourly stats

[⌊Pages report⌉⌊Pages report⌉[

Pages report

## 安装

#### Requirements:

 * PHP >= 7.4.0

#### Plugin installation:

 1. Upload the entire wise-analytics folder to the plugins directory (usually `/wp-
    content/plugins/`) of WordPress instance.
 2. Activate the plugin through the ‘Plugins’ menu in WordPress.
 3. Traffic tracking will start just after the activation
 4. Check the statistics on Dashboard -> Analytics page

#### Post Installation Notices:

 * After installation go to Settings -> Wise Analytics Settings page for detailed
   configuration and configure visitors mapping

## 常见问题

### How to add more details to visitors (e.g. e-mail address, name, city, etc.) ?

By default, visitors in Wise Analytics are described by ID number and a list of 
actions (called events) they performed on your site only.
 If you want to add more
details to the current visitor execute the following PHP code somewhere in your 
logic:

    ```
    if (class_exists('\Kainex\WiseAnalytics\Container', false)) {
       $visitorsService = \Kainex\WiseAnalytics\Container::getInstance()->get(\Kainex\WiseAnalytics\Services\Users\VisitorsService::class);
       $visitor = $visitorsService->getOrCreate();
       $visitor->setFirstName("Jerry");
       $visitor->setLastName("Smith");
       $visitor->setEmail("jerry@example.pl");
       $visitorsService->save($visitor);
    }
    ```

Next time you check Wise Analytics stats browser this visitor will be displayed 
as Jerry rather than Visitor #12345

### How to register a conversion?

When a visitor does something significant on your site you may register a conversion
event in your code.
 Then the conversion is visible in the stats browser.

    ```
    if (class_exists("\Kainex\WiseAnalytics\Container", false)) {
      $visitors = \Kainex\WiseAnalytics\Container::getInstance()->get(\Kainex\WiseAnalytics\Services\Users\VisitorsService::class);
      $events = \Kainex\WiseAnalytics\Container::getInstance()->get(\Kainex\WiseAnalytics\Services\Events\EventsService::class);

      $visitor = $visitors->getOrCreate();
      $visitor->setFirstName("John");
      $visitor->setEmail("john@myshop.com");
      $visitors->save($visitor);

      $events->createEvent(
        $visitor,
         "conversion", [
         "uri" => \Kainex\WiseAnalytics\Utils\URLUtils::getCurrentURL(),
         "ip" => \Kainex\WiseAnalytics\Utils\IPUtils::getIpAddress(),
         "order.id" => 123456,
         "order.id.public" => "order_123456",
         "order.amount" => 19900
        ]
      );
    }
    ```

### How to tell Wise Analytics to add more details to visitors after they put more details (e.g. e-mail address) in other plugins?

Imagine you have a contact form on your site. A visitor fills in the form and sends
a message.
 Together with the message they usually provide more details like a name,
e-mail address, phone number, company name, etc. Those details may be intercepted
by Wise Analytics and then presented on a visitor’s profile page in the stats browser.
This way you will learn more about your visitors: how often they come back, what
exactly they do on your site, etc.

Go to Settings -> Wise Analytics -> Visitors and map all detected contact forms.
Currently, we support Contact Form 7 plugin only. Once a visitor submits a form 
it is the recognized in Wise Analytics by name or e-mail (depending on mapping).

## 评价

![](https://secure.gravatar.com/avatar/e9fbd101fe11070221e281c3a2b68291a6efa3f447d1493d24a93fd291877e83?
s=60&d=retro&r=g)

### 󠀁[Detailed analytics and free plugin](https://wordpress.org/support/topic/detailed-analytics-and-free-plugin/)󠁿

 [zepolo](https://profiles.wordpress.org/zepolo/) 2026 年 3 月 26 日

Very good plugin. Complete and well-organized data. Works on our website where other
plugins don’t works. Minimal adjustments, works right out of the box. Good tool 
for analytics

![](https://secure.gravatar.com/avatar/6f0a1c74d3d08d6ca2af8dabd7a11c54ec0bfda2fa55f90cc092b60041a01841?
s=60&d=retro&r=g)

### 󠀁[Simple and clear!](https://wordpress.org/support/topic/simple-and-clear-22/)󠁿

 [przemyslawk](https://profiles.wordpress.org/przemyslawk/) 2026 年 2 月 17 日

Good plugin for tracking users and keeping the stats privately

![](https://secure.gravatar.com/avatar/ecb15bbd8557b217e4886f9c2eed025974996d2e044cdd06264402f79ce8f91a?
s=60&d=retro&r=g)

### 󠀁[Really good plugin](https://wordpress.org/support/topic/really-good-plugin-259/)󠁿

 [jennlaw](https://profiles.wordpress.org/jennlaw/) 2024 年 11 月 1 日

Easy to install and browse my own stats. A lot of reports, tables and charts. No
need to install other software

 [ 阅读所有3条评价 ](https://wordpress.org/support/plugin/wise-analytics/reviews/)

## 贡献者及开发者

「Wise Analytics」是开源软件。 以下人员对此插件做出了贡献。

贡献者

 *   [ Marcin ](https://profiles.wordpress.org/marcinlawrowski/)

[帮助将「Wise Analytics」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/wise-analytics)

### 对开发感兴趣吗?

您可以[浏览代码](https://plugins.trac.wordpress.org/browser/wise-analytics/)，查看
[SVN仓库](https://plugins.svn.wordpress.org/wise-analytics/)，或通过[RSS](https://plugins.trac.wordpress.org/log/wise-analytics/?limit=100&mode=stop_on_copy&format=rss)
订阅[开发日志](https://plugins.trac.wordpress.org/log/wise-analytics/)。

## 更新日志

#### 1.1.20

 * Added source column to visitors table
 * Fixed: security issue

#### 1.1.9

 * Added engagements stats

#### 1.1.8

 * Events page
 * Added period switching (daily, weekly, monthly) in lead line chart

#### 1.1.7

 * Lead line chart comparison option
 * Conversion event type

#### 1.1.6

 * External links tracking

#### 1.1.5

 * Entry pages report
 * Exit pages report

#### 1.1.4

 * Added pages views report
 * Many minor adjustments

#### 1.1.3

 * Added hourly stats
 * Improved backend sessions processing

#### 1.1.2

 * Added average time line chart
 * Added screens table

#### 1.1.1

 * Recognizing paid traffic
 * Traffic source daily chart with comparison to other metrics
 * SocialNetworks table
 * Channels table

#### 1.1

 * Added: social networks pie chart
 * Added: organic search pie chart
 * Added: referrals table

#### 1.0

Initial version

## 额外信息

 *  版本 **1.1.20**
 *  最后更新：**5 月前**
 *  活跃安装数量 **50+**
 *  WordPress 版本 ** 6.2.0 或更高版本 **
 *  已测试的最高版本为 **6.9.4**
 *  PHP 版本 ** 7.4.0 或更高版本 **
 *  语言
 * [English (US)](https://wordpress.org/plugins/wise-analytics/)
 * 标签
 * [analytics](https://cn.wordpress.org/plugins/tags/analytics/)[statistics](https://cn.wordpress.org/plugins/tags/statistics/)
   [stats](https://cn.wordpress.org/plugins/tags/stats/)[tracking](https://cn.wordpress.org/plugins/tags/tracking/)
   [traffic](https://cn.wordpress.org/plugins/tags/traffic/)
 *  [高级视图](https://cn.wordpress.org/plugins/wise-analytics/advanced/)

## 评级

 5 星（最高 5 星）。

 *  [  3 条 5 星评价     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=5)
 *  [  0 条 4 星评价     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=4)
 *  [  0 条 3 星评价     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=3)
 *  [  0 条 2 星评价     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=2)
 *  [  0 条 1 星评价     ](https://wordpress.org/support/plugin/wise-analytics/reviews/?filter=1)

[Your review](https://wordpress.org/support/plugin/wise-analytics/reviews/#new-post)

[查看全部评论](https://wordpress.org/support/plugin/wise-analytics/reviews/)

## 贡献者

 *   [ Marcin ](https://profiles.wordpress.org/marcinlawrowski/)

## 支持

有话要说吗？是否需要帮助？

 [查看支持论坛](https://wordpress.org/support/plugin/wise-analytics/)

## 捐助

您愿意支持这个插件的发展吗?

 [ 捐助此插件 ](https://kainex.pl/projects/wp-plugins/wise-analytics/wise-analytics-donate?utm_source=wiseanalytics-page&utm_medium=lead&utm_campaign=readme)