-
-
Save billerickson/c2159d022b9d6dcc3c2e10ba95967407 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 | |
/** | |
* 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