Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created July 16, 2018 19:10
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/004968700bf5200d43fdd49133da74d9 to your computer and use it in GitHub Desktop.
Save billerickson/004968700bf5200d43fdd49133da74d9 to your computer and use it in GitHub Desktop.
<?php
/**
* Move Shared Counts
* @see https://www.billerickson.net/code/shared-counts-theme-location/
*
* @param array $locations
* @return array
*/
function ea_shared_counts_location( $locations ) {
$locations['before']['hook'] = 'ea_post_intro';
return $locations;
}
add_filter( 'shared_counts_theme_locations', 'ea_shared_counts_location' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment