Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created October 22, 2015 20:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billerickson/b0e84493214b77e86847 to your computer and use it in GitHub Desktop.
Save billerickson/b0e84493214b77e86847 to your computer and use it in GitHub Desktop.
<?php
/**
* Gather data on recent posts
*
*/
function be_gather_share_data() {
ea_share()->core->prime_the_pump( 100, 20, true );
// 100 = total posts you want with share counts
// 20 = how many posts to process in one pageload
// true = whether to display a message indicating status (requires ea_pp() )
}
add_action( 'wp_footer', 'be_gather_share_data' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment