Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 13, 2019 21:42
Show Gist options
  • Save billerickson/c2159d022b9d6dcc3c2e10ba95967407 to your computer and use it in GitHub Desktop.
Save billerickson/c2159d022b9d6dcc3c2e10ba95967407 to your computer and use it in GitHub Desktop.
<?php
/**
* Shared Counts, add a Big Block style
* @see https://sharedcountsplugin.com/2019/05/13/creating-new-button-styles/
*
* @param array $styles
* @return array
*/
function be_shared_counts_styles( $styles ) {
$styles['big-block'] = __( 'Big Block' );
return $styles;
}
add_filter( 'shared_counts_styles', 'be_shared_counts_styles' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment