Title: Google Content Experiments
Author: Glenn Mulleners
Published: <strong>2012 年 7 月 22 日</strong>
Last modified: 2013 年 12 月 14 日

---

搜索插件

![](https://ps.w.org/google-content-experiments/assets/banner-772x250.png?rev=575659)

**该插件尚未通过WordPress的最新3个主要版本进行测试**。 当与较新版本的WordPress一起
使用时，可能不再受到维护或支持，并且可能会存在兼容性问题。

![](https://s.w.org/plugins/geopattern-icon/google-content-experiments_9db5c0.svg)

# Google Content Experiments

 作者：[Glenn Mulleners](https://profiles.wordpress.org/glennm/)

[下载](https://downloads.wordpress.org/plugin/google-content-experiments.1.0.3.zip)

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

 [支持](https://wordpress.org/support/plugin/google-content-experiments/)

## 描述

Per August 1, 2012, Google discontinued the used of their splittesting software 
Google Website Optimizer. Google Analytics now contains a function called Content
Experiments which can be used to splittest content on your website. This plugin 
enables you to use Content Experiments on your WordPress site.

## 屏幕截图

[⌊Meta box to insert the experiment code at the post/page edit screen⌉⌊Meta box 
to insert the experiment code at the post/page edit screen⌉[

Meta box to insert the experiment code at the post/page edit screen

## 安装

 1. Upload the `google-content-experiments` folder to the `/wp-content/plugins/` directory
 2. Activate the Google Content Experiments plugin through the ‘Plugins’ menu in WordPress
 3. At the post/page edit screen, check the box to activate the Content Experiment 
    for that post/page
 4. Insert your experiment code
 5. Publish the post/page

#### Supported themes and theme frameworks

 * Child themes based on the [Genesis Framework](http://www.studiopress.com/)
 * Themes using the [Infinity](http://infinity.presscrew.com/) WordPress Theming
   Engine
 * [Thematic](http://thematictheme.com/)
 * [PageLines](https://wordpress.org/extend/themes/pagelines/)

If your theme is not listed in the supported themes, you need to perform the following
steps:

 1. Within your theme, locate the file where the `<head>` tag is inserted (probably
    something like header.php)
 2. Place `<?php do_action( 'wpe_gce_head' ); ?>` right after `<head>`
 3. Save the file

By using the plugin, add the Google Content Experiments code to a page and view 
the source code of the web page to verify that the Google Content Experiments code
is actually inserted after the `<head>` tag.

## 常见问题

  How do I setup a content experiment?

Please see [this page](http://support.google.com/analytics/bin/answer.py?hl=en&answer=1745216).

  Error message: ‘Call to undefined function wp_get_theme’

The function `wp_get_theme` exists since WordPress 3.4.0. Try to update to the latest
version of WordPress and see if that resolves the issue.

  Error message: ‘Experiment code missing the cookie domain name declared in tracking
code’

The Google Analytics code modifies the cookie domain, but this modification is not
present in the experiment code.
 You should add some extra code to the code you 
get from Google.

_Example:_

In your Google Analytics code there is some code like `['_setDomainName', 'example.
com']`. You should add the following code _above_ the experiment code you got from
Google:

 _udn = “example.com”;

In total, the experiment code you put in the Experiment Code field of the GCE plugin
should look like:

 _udn = “example.com”;

    ```
    <!-- Google Analytics Experiment code -->
    ... Contents of the experiment code ...
    <!-- End of Google Analytics Experiment code -->
    ```

For more info about error messages go to the [Code-Checking Errors](http://support.google.com/analytics/bin/answer.py?hl=en&answer=2364634)
page.

## 评价

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

### 󠀁[Works well](https://wordpress.org/support/topic/nope-does-not-work-anymore/)󠁿

 [dushonok](https://profiles.wordpress.org/dushonok/) 2016 年 9 月 3 日

I tried it with a Genesis child theme – works well. My only problem was to find 
my way in google Experiments UI, which has nothing to do with the plugin 🙂

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

### 󠀁[Does the trick BUT you must add a line of HTML before it works!](https://wordpress.org/support/topic/does-the-trick-but-you-must-add-a-line-of-html-before-it-works/)󠁿

 [fseminario](https://profiles.wordpress.org/fseminario/) 2016 年 9 月 3 日 1 回复

I had to add "<?php do_action( 'wpe_gce_head' ); ?>" to my header.php for this to
work on my theme. Almost thought it didn't work…maybe this step should be placed
at the top of the installation instructions instead of the bottom

 [ 阅读所有15条评价 ](https://wordpress.org/support/plugin/google-content-experiments/reviews/)

## 贡献者及开发者

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

贡献者

 *   [ Glenn Mulleners ](https://profiles.wordpress.org/glennm/)

[帮助将「Google Content Experiments」翻译成简体中文。](https://translate.wordpress.org/projects/wp-plugins/google-content-experiments)

### 对开发感兴趣吗?

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

## 更新日志

#### 1.0.3

 * Tested compatibility with WordPress 3.6
 * Fixed some notices of undefined variables
 * Updated class-wpe-GCE.php and admin/class-wpe-GCEAdmin.php according to WordPress
   PHP Coding Standards
 * Updated language files
 * Updated screenshot

#### 1.0.2

 * Updated Genesis support to be compatible with Genesis 2.0 to support HTML5 child
   themes
 * Added metabox to activate the experiment to the Add new post/pages/custom post
   type screens
 * Added support for Infinity
 * Added support for Thematic
 * Added support for PageLines

#### 1.0.1

 * Fixed bug that inserted experiment code when displaying multiple posts (e.g. 
   on category pages)
 * Updated Dutch translation

#### 1.0

 * Initial release

## 额外信息

 *  版本 **1.0.3**
 *  最后更新：**13 年前**
 *  活跃安装数量 **100+**
 *  WordPress 版本 ** 3.4.0 或更高版本 **
 *  已测试的最高版本为 **3.7.41**
 *  语言
 * [English (US)](https://wordpress.org/plugins/google-content-experiments/)
 *  [高级视图](https://cn.wordpress.org/plugins/google-content-experiments/advanced/)

## 评级

 4.3 星（最高 5 星）。

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

[您的评价](https://wordpress.org/support/plugin/google-content-experiments/reviews/#new-post)

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

## 贡献者

 *   [ Glenn Mulleners ](https://profiles.wordpress.org/glennm/)

## 支持

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

 [查看支持论坛](https://wordpress.org/support/plugin/google-content-experiments/)