-
-
Save billerickson/b0e84493214b77e86847 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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