| 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 |
|