Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 23, 2018 13:33
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/9c2c23924bce098d13b2012d588f0c22 to your computer and use it in GitHub Desktop.
Save billerickson/9c2c23924bce098d13b2012d588f0c22 to your computer and use it in GitHub Desktop.
<?php
/**
* Shared Counts Locations
*
*/
function be_shared_counts_locations( $locations ) {
$locations = array(
'before' => array(
'hook' => 'genesis_before_entry_content',
'filter' => false,
'priority' => 13,
'style' => false,
),
'after' => array(
'hook' => 'genesis_after_entry',
'filter' => false,
'priority' => 8,
'style' => false,
),
);
return $locations;
}
add_filter( 'shared_counts_theme_locations', 'be_shared_counts_locations' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment