mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
23 lines
621 B
PHP
23 lines
621 B
PHP
<?php
|
|
/**
|
|
* Module Name: WooCommerce Analytics
|
|
* Module Description: Enhanced analytics for WooCommerce and Jetpack users.
|
|
* Sort Order: 13
|
|
* First Introduced: 8.4
|
|
* Requires Connection: Yes
|
|
* Auto Activate: Yes
|
|
* Module Tags: Other, Recommended
|
|
* Feature: Engagement
|
|
* Additional Search Queries: woocommerce, analytics, stats, statistics, tracking, analytics, views
|
|
*
|
|
* @package Jetpack
|
|
*/
|
|
|
|
/**
|
|
* Load module functionality.
|
|
*/
|
|
function jetpack_load_woocommerce_analytics() {
|
|
require_once dirname( __FILE__ ) . '/woocommerce-analytics/wp-woocommerce-analytics.php';
|
|
}
|
|
jetpack_load_woocommerce_analytics();
|