Skip to content

Instantly share code, notes, and snippets.

@spivurno
Last active October 27, 2016 22:53
Show Gist options
  • Save spivurno/8778af59e8ada81f671a to your computer and use it in GitHub Desktop.
Save spivurno/8778af59e8ada81f671a to your computer and use it in GitHub Desktop.
Gravity Perks // GP Word Count // Change Word Count Labels
<?php
/**
* Gravity Perks // GP Word Count // Change Word Count Labels
*/
add_filter( 'gpwc_script_args', 'gpwc_modify_script_args' );
function gpwc_modify_script_args( $args ) {
$args['defaultLabel'] = '{count} / {limit}';
$args['counterLabel'] = '{count} / {limit}';
$args['limitReachedLabel'] = '<span style="font-weight:bold;">{count} / {limit}</span>';
$args['limitExceededLabel'] = '<span style="font-weight:bold;color:#f00;">{count} / {limit}</span>';
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment