PluginProbe
Nelio A/B Testing – AB Tests and Heatmaps for Better Conversion Optimization / 8.5.3
Nelio A/B Testing – AB Tests and Heatmaps for Better Conversion Optimization v8.5.3
8.5.3 8.5.2 8.5.1 8.5.0 8.4.1 8.4.0 8.3.5 8.3.4 trunk 6.4.0 6.4.1 6.4.2 6.4.3 6.4.4 6.5.0 6.5.1 6.6.0 7.0.0 7.0.1 7.0.2 7.0.3 7.0.4 7.0.5 7.0.6 7.1.0 All 73 releases
nelio-ab-testing / nelio-ab-testing.php

nelio-ab-testing.php in Nelio A/B Testing – AB Tests and Heatmaps for Better Conversion Optimization 8.5.3, at nelio-ab-testing.php

39 lines 1.1 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * The plugin bootstrap file
4 *
5 * Plugin Name: Nelio A/B Testing – AB Tests and Heatmaps for Better Conversion Optimization
6 * Plugin URI: https://neliosoftware.com/testing/
7 * Description: Optimize your site based on data, not opinions. With this plugin, you will be able to perform AB testing (and more) on your WordPress site.
8 * Version: 8.5.3
9 *
10 * Author: Nelio Software
11 * Author URI: https://neliosoftware.com
12 * License: GPL-2.0+
13 * License URI: http://www.gnu.org/licenses/gpl-2.0.txt
14 *
15 * Requires at least: 6.7
16 * Requires PHP: 7.4
17 *
18 * Text Domain: nelio-ab-testing
19 */
20
21 defined( 'ABSPATH' ) || exit;
22
23 define( 'NELIO_AB_TESTING', true );
24 require untrailingslashit( __DIR__ ) . '/class-nelio-ab-testing.php';
25
26 /**
27 * Returns the unique instance of Nelio A/B Testing’s main class.
28 *
29 * @return Nelio_AB_Testing unique instance of Nelio A/B Testing’s main class.
30 *
31 * @since 5.0.0
32 */
33 function nelioab() {
34 return Nelio_AB_Testing::instance();
35 }
36
37 // Start plugin.
38 nelioab();
39