Skip to content

Instantly share code, notes, and snippets.

@jeherve
Created December 10, 2013 11:16
Show Gist options
  • Save jeherve/7889101 to your computer and use it in GitHub Desktop.
Save jeherve/7889101 to your computer and use it in GitHub Desktop.
[Jetpack] Get the number of subscribers on your site
<?php
// Get the number of subscribers on your site
function jeherve_sub_count() {
if ( class_exists( 'Jetpack_Subscriptions_Widget' ) ) {
$subcount = Jetpack_Subscriptions_Widget::fetch_subscriber_count();
echo $subcount['value'];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment