PHP code example of automattic / jetpack-heartbeat
1. Go to this page and download the library: Download automattic/jetpack-heartbeat library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
automattic / jetpack-heartbeat example snippets
Automattic\Jetpack\Heartbeat::init();
add_filter( 'jetpack_heartbeat_stats_array', 'my_callback' );
function my_callback( $stats ) {
$stats['my-plugin'] = 'active';
return $stats;
}